Skip to content

Instantly share code, notes, and snippets.

@carmichaelize
Last active August 29, 2015 14:07
Show Gist options
  • Save carmichaelize/2e9c425f999cecc45ff0 to your computer and use it in GitHub Desktop.
Save carmichaelize/2e9c425f999cecc45ff0 to your computer and use it in GitHub Desktop.
jQuery Scroll Button
//Scroll Button
function windowScroll(event){
$('html, body').animate({scrollTop: event.data}, 1000);
return false;
}
//Scroll top top
$('#too-top').on('click', 0, windowScroll);
//Scroll to footer
$('#contact-btn a, .contact-scroll').on('click', $('#footer').position().top, windowScroll);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment