Skip to content

Instantly share code, notes, and snippets.

@aislam23
Last active February 4, 2021 12:51
Show Gist options
  • Save aislam23/59b6bca4f32f020322147c7bdc444440 to your computer and use it in GitHub Desktop.
Save aislam23/59b6bca4f32f020322147c7bdc444440 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(function() {
$(window).scroll(function() {
if($(this).scrollTop() != 0) {
$('.totop').fadeIn();
}
else {
$('.totop').fadeOut();
}
});
$('.totop').click(function() {
$('body,html').animate({scrollTop:0},800);
});
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment