Please tell me how to use Ajax Loader in jQuery pop up.
On my aspx page there is jquery pop up, and on the pop up there is list of checkboxes, and when a check box is checked another list of check开发者_开发问答boxes load. For this I want use Ajax Loader.
Add a div with the loading gif and hide it. Then use the following snippet:
$("#loading").ajaxStart(function(){
$(this).show();
});
$("#loading").ajaxStop(function(){
$(this).hide();
});
This will show your loading gif each time an ajax request is loading.
精彩评论