Skip to content

Instantly share code, notes, and snippets.

@timramseyjr
Created July 5, 2017 19:26
Show Gist options
  • Save timramseyjr/3f5ff6e00218281a01c1f75ab19bfdad to your computer and use it in GitHub Desktop.
Save timramseyjr/3f5ff6e00218281a01c1f75ab19bfdad to your computer and use it in GitHub Desktop.
jQuery Smooth scrollTo
$('.rightorder a[href*="#"]').on('click',function(e) {
e.preventDefault();
var target = $(this).attr('href');
var div = $(target);
if (div.length) {
$('html,body').animate({
scrollTop: div.offset().top - 90
}, 1000);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment