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

Untitled

By: a guest on May 13th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 15  |  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. Delay showing div
  2. <div class="toolbar">
  3. <ul></ul>
  4. </div>
  5.        
  6. <script>
  7.   $(window).scroll(function () {
  8.     $(".toolbar").fadeIn("slow");
  9.   });
  10. </script>
  11.        
  12. <script>
  13.   $(document).ready(function () {
  14.     $(".toolbar").delay(800).fadeIn(10000);
  15.   });
  16. </script>