Guest User

Untitled

a guest
Jun 25th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. $(document)
  2. .ajaxSend(function (event, xhr, aOpts) {
  3.  
  4. $('<div/>', {
  5. id: 'loading-indicator',
  6. text: 'Working...',
  7. css: {
  8. position: 'fixed',
  9. top: '0',
  10. left: '0'
  11. }
  12. }).prependTo('body');
  13. })
  14. .ajaxComplete(function() {
  15. $('#loading-indicator').remove();
  16. });
Add Comment
Please, Sign In to add comment