Skip to content

Instantly share code, notes, and snippets.

@RowanBurgess-zz
Last active August 29, 2015 14:03
Show Gist options
  • Save RowanBurgess-zz/72df91f96d60a479ecbb to your computer and use it in GitHub Desktop.
Save RowanBurgess-zz/72df91f96d60a479ecbb to your computer and use it in GitHub Desktop.
Scroll To Anchor
function scrollToAnchor(aid){
var aTag = $j("a[name='"+ aid +"']");
$j('html,body').animate({scrollTop: aTag.offset().top},'slow');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment