Hi,
(to start im a newbie with ajax) I have this script that reloads a page into a div layer after a certain amount of time using jquery
the script works great but my problem is id just like it to refresh the whole page without blinking as there is more than one part of the page that needs updating and it also messes with the resulting page of form submissions that are with the areas loaded... is there not a way to change the ".load(''latest .php);" into something that refreshes a whole page instead of partial?
(to start im a newbie with ajax) I have this script that reloads a page into a div layer after a certain amount of time using jquery
Code:
<script>
$(document).ready(function() {
$("#latestNewsHolder").load("latest.php");
var refreshId = setInterval(function() {
$("#latestNewsHolder").load('latest.php');
}, 36000);
});
</script>
Comment