Hi,
Is it possible to check if the document is not ready and execute a function periodically in jQuery?
Simply I would like to achieve something like :
$('document').isNotReady(function(){
$('#divState').text('Still Loading');
});
$('document').Ready(function(){
$('#divState').text('Loaded');
});
Is there a built-in function in jQuery to achieve something like this?