Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // HTML mark up
- <a class="back-to-top"><i class="fa fa-arrow-up"></i></a>
- // Add this to JavaScript file
- jQuery(function ($) {
- var $buttonTop = $('.back-to-top');
- $buttonTop.on('click', function () {
- $('html, body').animate({
- scrollTop: 0,
- }, 1000);
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment