Ajax periodic refresh of page using jQuery

0
Categories: JavaScript, PHP
Posted on: 13th July 2009 by: Andrei
var refreshId = setInterval(function() {
     $('#some-content').load('/path/to/your.php');
}, 3000);