<!-- Only updates single div tag. look into updating multiple div tags in same jquery-->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$("#predators").load("predators.php");
var refreshId = setInterval(function() {
$("#predators").load('predators.php?randval='+ Math.random());
}, 9000);
$.ajaxSetup({ cache: false });
});
</script>
The big question is; is it possible?

New Topic/Question
Reply


MultiQuote




|