Skip to content

Instantly share code, notes, and snippets.

@Krasnov8953
Created June 16, 2017 09:02
Show Gist options
  • Save Krasnov8953/465f3145d02bde4220d9bbc8a3dee169 to your computer and use it in GitHub Desktop.
Save Krasnov8953/465f3145d02bde4220d9bbc8a3dee169 to your computer and use it in GitHub Desktop.
cmoozy scroll to ankor links
$('[data-action=link]').click(function(e){
e.preventDefault();
var toId = $(this).attr('href');
$('html,body').animate({
scrollTop:($(toId).offset().top)
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment