Skip to content

Instantly share code, notes, and snippets.

@kickboxer
Created January 27, 2015 08:57
Show Gist options
  • Save kickboxer/56337dfe616af5d8fcc0 to your computer and use it in GitHub Desktop.
Save kickboxer/56337dfe616af5d8fcc0 to your computer and use it in GitHub Desktop.
jQuery scrollTo
$(function(){
$('a[href^="#"]').click(function(){
var target = $(this).attr('href');
$('html, body').animate({scrollTop: $(target).offset().top}, 1000);
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment