ohctech_p8/spinner.js

7 lines
173 B
JavaScript
Raw Normal View History

2024-10-16 19:18:52 +05:30
$('#spinner_div').bind('ajaxStart', function() {
$(this).show();
$("#mybtn").hide();
}).bind('ajaxStop', function() {
$(this).hide();
$("#mybtn").show();
});