1var $loading = $('#loadingDiv').hide();
2$(document)
3 .ajaxStart(function () {
4 $loading.show();
5 })
6 .ajaxStop(function () {
7 $loading.hide();
8 });
9
1$('#loadingDiv')
2 .hide() // Hide it initially
3 .ajaxStart(function() {
4 $(this).show();
5 })
6 .ajaxStop(function() {
7 $(this).hide();
8 })
9;
10