Guest User

Untitled

a guest
Apr 25th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. // default.js
  2. $.fn.showLoader = function() {
  3. this.ajaxStart(function() {
  4. this.show();
  5. $(this).html('<img id="loading" src="images/loading.gif" alt="loading" />');
  6. });
  7. };
  8.  
  9.  
  10. // other_file.js
  11. $(function() {
  12. $('#someDiv').showLoader();
  13. });
Add Comment
Please, Sign In to add comment