jquery throbber


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <script type='text/javascript'>
  2. $(document).ready(function(){
  3. $("#working").bind("ajaxSend", function(){
  4. $(this).show();
  5. }).bind("ajaxComplete", function(){
  6. $(this).hide();
  7. });
  8. });
  9. </script>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.