Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created March 14, 2013 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save psdtohtml5/5160963 to your computer and use it in GitHub Desktop.
Save psdtohtml5/5160963 to your computer and use it in GitHub Desktop.
jQuery : Scroll Top
$(window).scroll(function() {
if($(window).scrollTop() > 300){
$("#top").fadeIn();
} else{
$("#top").fadeOut();
}
});
$("#top").click(function() {
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment