Skip to content

Instantly share code, notes, and snippets.

@jdtdesigns
Created November 11, 2015 06:56
Show Gist options
  • Save jdtdesigns/5beea6da8dd49e994ead to your computer and use it in GitHub Desktop.
Save jdtdesigns/5beea6da8dd49e994ead to your computer and use it in GitHub Desktop.
Smooth Scroll Snippet
// <li><a href="target value"></li
//<div id="target"></div>
$menuButton.on('click', _showSection);
function _showSection(e) {
e.preventDefault();
var target = $(this).attr('href');
$page.stop().animate({
scrollTop: $(target).offset().top - 70
}, 300);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment