Skip to content

Instantly share code, notes, and snippets.

@LouisWhit
Last active April 16, 2019 18:56
Show Gist options
  • Select an option

  • Save LouisWhit/5909374 to your computer and use it in GitHub Desktop.

Select an option

Save LouisWhit/5909374 to your computer and use it in GitHub Desktop.
Back to top - Basic footer link
<div class="returnTop"><p class="pull-right"><a href="#top"><i class="fa fa-arrow-up"></i></a></p></div>
.returnTop{
position: fixed;
bottom: 15px;
right: 20px;
}
.returnTop a{
color:#c41230;
}
$("a[href='#top']").click(function() {
$("html, body").animate({ scrollTop: 0 }, "slow");
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment