Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 0.27 KB  |  hits: 13  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Showing Loading Bar for MySQL Query
  2. <script>
  3. $(function() {
  4.   $('#loadDiv').hide();
  5.   $('#wrapper').hide();
  6.   $('#loadDiv').ajaxStart(function() {
  7.     $(this).show();
  8.   }).ajaxStop(function() {
  9.     $('#loadDiv').hide();
  10.   });
  11.   $('#wrapper').fadeIn();
  12.    });
  13. </script>