Skip to content

Instantly share code, notes, and snippets.

@tcelestino
Created February 27, 2013 22:41
Show Gist options
  • Save tcelestino/5052527 to your computer and use it in GitHub Desktop.
Save tcelestino/5052527 to your computer and use it in GitHub Desktop.
Animate scrollTop using jQuery.
function scrollUp() {
var content_animate = $(jQuery.browser.webkit ? "body": "html"); // bug fix to animate on firefox and uses to opera and ie.
var _position = content_animate.scrollTop();
if(_position > 0) {
content_animate.animate({
scrollTop: 0
}, 1500);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment