Skip to content

Instantly share code, notes, and snippets.

@vishnuvp
Last active August 29, 2015 14:02
Show Gist options
  • Save vishnuvp/d1be2945294f03b18ed1 to your computer and use it in GitHub Desktop.
Save vishnuvp/d1be2945294f03b18ed1 to your computer and use it in GitHub Desktop.
Scroll to element on click on anchor
jQuery('a.menu-link').click(function(e){
e.preventDefault();
var href= jQuery(this).attr("href");
jQuery('html, body').animate({
scrollTop: jQuery(href).offset().top - 50}, 1000); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment