$(document).ready (
function ready() {
var tester = $.ajax({
async: false,
url: "test_parse.php"
}).responseText;
document.getElementById('test').innerHTML = tester;
setTimeout(ready(), 3000);
}
);
Hey guys I want to call a function within itself like this but every time I do this my browser just keeps loading and eventually Apache shuts down (obviously not my expected result). Think you guys could help me figure out a solution? Thank you!
setTimeout(ready,3000)out of thesuccesscallback and into acompletecallback, that way it will be called regardless of the success or failure of your$.ajaxcall. – mu is too short Sep 10 '11 at 4:58