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

Untitled

By: a guest on May 30th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 10  |  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. How to scroll to top from *.js.erb file
  2. $('#general-messages').html("<%= escape_javascript(render :partial => 'shared/error_message', :object => flash[:error]) %>");
  3. $('html, body').animate({scrollTop:0}, 100);
  4.        
  5. $(document).ready(function () {
  6.     $('#to-top').click(function () {
  7.         $('html, body').animate({scrollTop:0}, 100);
  8.     });
  9. });