Created
October 25, 2017 14:35
-
-
Save prabhatkashyap/067f5c2092e678d4bffa785b671ec5e7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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