Skip to content

Instantly share code, notes, and snippets.

@Razenbull
Created July 23, 2015 12:15
Show Gist options
  • Save Razenbull/8c5bfc7d4bbd504be129 to your computer and use it in GitHub Desktop.
Save Razenbull/8c5bfc7d4bbd504be129 to your computer and use it in GitHub Desktop.
Scroll document to a target
/**
*
* @param $target
* @returns {boolean}
*/
function scrollTo($target) {
console.log('trigger scrollTo()');
$('html, body').animate({
scrollTop: $target.offset().top
}, 500);
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment