Skip to content

Instantly share code, notes, and snippets.

@szpakoli
Created May 15, 2013 13:26
Show Gist options
  • Save szpakoli/5583972 to your computer and use it in GitHub Desktop.
Save szpakoli/5583972 to your computer and use it in GitHub Desktop.
$.fn.scrollView = function () {
return this.each(function () {
$('html, body').animate({
scrollTop: $(this).offset().top
}, 1000);
});
}
$('#scroll-link').click(function (event) {
event.preventDefault();
$('#header').scrollView();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment