Results 1 to 10 of 10
Hybrid View
-
14th Jan 2012, 09:41 PM #1Member
I use this sexy code:
Demo Link
PHP Code:<html>
<head>
<!-- For ease i'm just using a JQuery version hosted by JQuery- you can download any version and link to it locally -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$("#responsecontainer").load("response.php");
var refreshId = setInterval(function() {
$("#responsecontainer").load('response.php?randval='+ Math.random());
}, 9000);
$.ajaxSetup({ cache: false });
});
</script>
</head>
<body>
<div id="responsecontainer">
</div>
</body>
Sourcehq320 Reviewed by hq320 on . Auto refresh page code ? Hi ! I want to have auro refresh every 1 minute on of my web page but i am looking with some way to we don't see when the page reload. I want to we see the changes in the page but without reload the full page. How can i do that ? Ajax or how ? Thanks Rating: 5No Signature This Time
-
15th Jan 2012, 12:59 AM #2Member
Here's a tutorial we've used in the past from: http://woKWWHava.wordpress.com/2010/02...-using-jquery/
Code:<html> <head> <Title>Just A Test</Title> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> var auto_refresh = setInterval( function () { $('#load_me').load('showdata.jsp').fadeIn("slow"); }, 10000); // autorefresh the content of the div after //every 10000 milliseconds(10sec) </script> </head> <body> <div id="load_me"> <%@ include file="showdata.jsp" %></div> </body> </html>
-
15th Jan 2012, 09:07 AM #3OPMemberWebsite's:
imazehost.comQuestion
Sponsored Links
Thread Information
Users Browsing this Thread
There are currently 1 users browsing this thread. (0 members and 1 guests)
Similar Threads
-
Make new page ( auto ) HTML
By r00ts in forum Webmaster DiscussionReplies: 2Last Post: 14th Feb 2012, 03:23 PM -
Need Help Making This Shoutbox Auto Refresh
By DJboutit in forum Web Application/Script SupportReplies: 20Last Post: 6th Dec 2011, 03:59 AM -
what is code page full script ?
By ctoveloz in forum Webmaster DiscussionReplies: 3Last Post: 20th Jul 2011, 09:04 PM -
auto code mod for smf 1.1.x by me
By MRDJ in forum Web Application/Script SupportReplies: 4Last Post: 5th May 2011, 12:46 PM -
Reload content without page refresh
By AmN in forum Web Development AreaReplies: 7Last Post: 5th May 2011, 07:49 AM
themaCreator - create posts from...
Version 3.53 released. Open older version (or...