Skip to content

Instantly share code, notes, and snippets.

@joshuarule
Last active August 29, 2015 14:06
Show Gist options
  • Save joshuarule/6b6b4061bab1a191c60a to your computer and use it in GitHub Desktop.
Save joshuarule/6b6b4061bab1a191c60a to your computer and use it in GitHub Desktop.
scollto div
// scrollto
//
// $fix 84 is equal to height of header
$.fn.scrollView = function () {
return this.each(function () {
$('html, body').animate({
scrollTop: $(this).offset().top - 84
}, 1000);
});
}
$('.button').click(function(e){
e.preventDefault();
$('#div').scrollView();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment