Skip to content

Instantly share code, notes, and snippets.

@jbrz0
Last active December 11, 2017 11:40
Show Gist options
  • Save jbrz0/6c6a642cefbe7230cd55bcf6470ab21d to your computer and use it in GitHub Desktop.
Save jbrz0/6c6a642cefbe7230cd55bcf6470ab21d to your computer and use it in GitHub Desktop.
Simple jQuery scroll function to scroll to an object and animate with time range
$('a[href^="#"]').on('click', function(event) {
var target = $( $(this).attr('href') );
if( target.length ) {
event.preventDefault();
$('html, body').animate({
scrollTop: target.offset().top
}, 6500);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment