Skip to content

Instantly share code, notes, and snippets.

@jquery404
Created March 25, 2012 05:38
Show Gist options
  • Save jquery404/2191558 to your computer and use it in GitHub Desktop.
Save jquery404/2191558 to your computer and use it in GitHub Desktop.
Animated Scroll to Div
var goToByScroll= function(id){
$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment