Skip to content

Instantly share code, notes, and snippets.

@prabhatkashyap
Created October 25, 2017 14:35
Show Gist options
  • Select an option

  • Save prabhatkashyap/067f5c2092e678d4bffa785b671ec5e7 to your computer and use it in GitHub Desktop.

Select an option

Save prabhatkashyap/067f5c2092e678d4bffa785b671ec5e7 to your computer and use it in GitHub Desktop.
if (typeof jQuery !== 'undefined') {
(function($) {
$('#spinner').ajaxStart(function() {
$(this).fadeIn();
}).ajaxStop(function() {
$(this).fadeOut();
});
})(jQuery);
}
<div id="spinner" class="spinner">Loading...</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment