- How to scroll to top from *.js.erb file
- $('#general-messages').html("<%= escape_javascript(render :partial => 'shared/error_message', :object => flash[:error]) %>");
- $('html, body').animate({scrollTop:0}, 100);
- $(document).ready(function () {
- $('#to-top').click(function () {
- $('html, body').animate({scrollTop:0}, 100);
- });
- });