Skip to content

Instantly share code, notes, and snippets.

@alexermakov
Last active April 11, 2016 08:22
Show Gist options
  • Save alexermakov/4de7578d7e7dc384b705 to your computer and use it in GitHub Desktop.
Save alexermakov/4de7578d7e7dc384b705 to your computer and use it in GitHub Desktop.
scroll for ancors
$('a[href^="#"], a[href^="."]').click( function(){
var scroll_el = $(this).attr('href');
if ($(scroll_el).length != 0) {
$('html, body').animate({ scrollTop: $(scroll_el).offset().top }, 1000);
}
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment