ESH/spinner.js
2024-10-23 18:28:06 +05:30

7 lines
173 B
JavaScript

$('#spinner_div').bind('ajaxStart', function() {
$(this).show();
$("#mybtn").hide();
}).bind('ajaxStop', function() {
$(this).hide();
$("#mybtn").show();
});