Advertisement
Guest User

Untitled

a guest
Sep 30th, 2014
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. $(document).ready(function() {
  2. //Required for loading
  3. $.ajax();
  4. });
  5.  
  6. // Loading
  7.  
  8. $(document).ajaxStart(function(){
  9. $("#loading").show();
  10. });
  11. $(document).ajaxStop(function(){
  12. $("#loading").delay(2000).fadeOut(500);
  13. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement