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

Untitled

By: a guest on Aug 5th, 2012  |  syntax: None  |  size: 0.23 KB  |  hits: 14  |  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. Jquery, an autoscroll to bottom function at a constant speed
  2. $bottom = 100;
  3. function scroll() {
  4.         $('html, body').animate({scrollTop:$bottom}, 2000, 'linear');
  5.         $bottom = $bottom + 100;
  6.         scroll();
  7. }
  8.  
  9. scroll();