Hi;
I'm using the Queued Ajax requests/Synced Ajax to call time.php ( this is heavy php file ). I would like to be able to add a loafing massage ( or a loading.gif ) while the Queued request is executed , so the user has some indication the something is running . here is my code :
<script>
$(function(){
jQuery.ajaxQueue({
url: "time.php",
// do not show file
success: function(html){ jQuery("ul").append(html); }
});
jQuery.ajaxSync({
url: "time.php",
success: function(html){ jQuery("ul").append("<b>Loladed File 1</b><BR>"); }
});
});
});
</script>
thanks jeff