Skip to content

Instantly share code, notes, and snippets.

@cleytonmessias
Created June 18, 2015 18:47
Show Gist options
  • Save cleytonmessias/20366ea8786a2a54bbfa to your computer and use it in GitHub Desktop.
Save cleytonmessias/20366ea8786a2a54bbfa to your computer and use it in GitHub Desktop.
$('#id ou class da div').on('click', function(event) {
event.preventDefault();
var offset = $($(this).attr('href')).offset().top;
$('html, body').animate({scrollTop:offset}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment