ohctech_p8/spinner.js
2024-10-16 19:18:52 +05:30

7 lines
173 B
JavaScript

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