Code: Select all
setInterval(function() {
$.get("update.php")
}, 10000);
Then it tells my the problem is in my jquery file (1.6.2).
Code: Select all
setInterval(function() {
$.get("update.php")
}, 10000);
Code: Select all
setInterval(function() {
$.get("update.php");
}, 10000);Code: Select all
var si = setInterval(callUpdate, 10000);
function callUpdate() {
$.get('update.php');
}