Skip to content

Instantly share code, notes, and snippets.

@vedranjaic
Created May 26, 2013 17:43
Show Gist options
  • Save vedranjaic/5653478 to your computer and use it in GitHub Desktop.
Save vedranjaic/5653478 to your computer and use it in GitHub Desktop.
jQ: Scroll to top
$(document).ready(function(){
$("#ANCHOR_ID").click(function(){
$('html, body').animate({
scrollTop: '0px'
},
500);
return false;
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment