Skip to content

Instantly share code, notes, and snippets.

@RuslanHolovko
Created March 6, 2018 16:39
Show Gist options
  • Save RuslanHolovko/72252e1a795b52547816f46397ab0c91 to your computer and use it in GitHub Desktop.
Save RuslanHolovko/72252e1a795b52547816f46397ab0c91 to your computer and use it in GitHub Desktop.
scroll page to top
// Scroll page to top
$('.element').on('click', function(){
$('hmtl, body').animate({ scrollTop : 0 }, 200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment