Skip to content

Instantly share code, notes, and snippets.

@ozee
Created November 1, 2012 16:40
Show Gist options
  • Save ozee/3994910 to your computer and use it in GitHub Desktop.
Save ozee/3994910 to your computer and use it in GitHub Desktop.
Javascript: JQuery - smooth scrolling to anchor
$(document).ready(function() {
$("myLink").click(function() {
$("html, body").animate({
scrollTop: $($(this).attr("href")).offset().top + "px"
}, {
duration: 450,
easing: "easeOutBounce"
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment