Skip to content

Instantly share code, notes, and snippets.

@toshimaru
Created July 12, 2013 09:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save toshimaru/5982978 to your computer and use it in GitHub Desktop.
Save toshimaru/5982978 to your computer and use it in GitHub Desktop.
Scroll to the particular element using jQuery.
$('.info').on('click', function(){
$('html, body').animate({
scrollTop: $(this).offset().top
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment