Skip to content

Instantly share code, notes, and snippets.

@AndrwM
Created April 10, 2014 14:45
Show Gist options
  • Save AndrwM/10389946 to your computer and use it in GitHub Desktop.
Save AndrwM/10389946 to your computer and use it in GitHub Desktop.
// <a href="#somewhere">ASKFDJh</a>
$("a").bind("click", function(e){
e.preventDefault();
var location = $(this).attr("href")
$('html, body').animate({
scrollTop: $(location).offset().top
}, 1500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment