Skip to content

Instantly share code, notes, and snippets.

@zetareticoli
Created June 16, 2012 11:48
Show Gist options
  • Save zetareticoli/2941119 to your computer and use it in GitHub Desktop.
Save zetareticoli/2941119 to your computer and use it in GitHub Desktop.
Animated scroll to anchor/id function with jQuery
function goToByScroll(id){
$('html,body').animate({scrollTop: $("#"+id).offset().top},'slow');
}
<a href="#linkID" onclick="goToByScroll('linkID')">Link</a>
@deftool
Copy link

deftool commented Dec 16, 2020

thanks,

from top to bottom?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment