Hey guys,
I have a load function and would like for the code to write some html into a div while it loads, and when it completes, to display the page. I saw some little writeups on the ajaxStart and ajaxComplete events, however I am not sure how to implement them.
Here is the jquery I am thinking of using, however not sure how to implement within the code I have currently…
$(document).ajaxStart(function(){
$('#content').html("Loading Content...");
});
Here is the current jquery I am using:
//Load content
$(".load").click(function(){
$("#content").empty();
loadName = $(this).attr("id");
$("#content").load("/content/" + loadName + ".php");
});