Skip to content

Instantly share code, notes, and snippets.

@livimonte
Created May 7, 2015 01:30
Show Gist options
  • Save livimonte/db57249da3ee04ed314d to your computer and use it in GitHub Desktop.
Save livimonte/db57249da3ee04ed314d to your computer and use it in GitHub Desktop.
//<a href="#home" class="scroll">Home</a>
$(".scroll").click(function(event){
event.preventDefault();
var full_url = this.href
, parts = full_url.split("#")
, trgt = parts[1]
, target_offset = $("#"+trgt).offset()
, target_top = target_offset.top;
$('html, body').animate({scrollTop:target_top}, 700);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment