Skip to content

Instantly share code, notes, and snippets.

@vividvilla
Created January 9, 2014 20:18
Show Gist options
  • Save vividvilla/8341205 to your computer and use it in GitHub Desktop.
Save vividvilla/8341205 to your computer and use it in GitHub Desktop.
Smooth scrolling
jQuery(document).ready(function($) {
/*SMOOTH SCROLLING*/
jQuery(".scroll, .gototop a").click(function(event){
event.preventDefault();
jQuery('html,body').animate({scrollTop:jQuery(this.hash).offset().top}, 500);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment