Skip to content

Instantly share code, notes, and snippets.

@owlsky
Created October 7, 2013 06:14
Show Gist options
  • Save owlsky/6863231 to your computer and use it in GitHub Desktop.
Save owlsky/6863231 to your computer and use it in GitHub Desktop.
Simple Scroll Up jQuery
<script type="text/javascript">
$(document).ready(function(){
$(window).scroll(function(){
if ($(this).scrollTop() > 100) {
$('.scrollup').fadeIn();
} else {
$('.scrollup').fadeOut();
}
});
$('.scrollup').click(function(){
$("html, body").animate({ scrollTop: 0 }, 600);
return false;
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment