Untitled


SUBMITTED BY: antoineh1

DATE: May 8, 2016, 8:22 p.m.

FORMAT: Text only

SIZE: 495 Bytes

HITS: 4267

  1. // ===== Scroll to Top ====
  2. $(window).scroll(function() {
  3. if ($(this).scrollTop() >= 50) { // If page is scrolled more than 50px
  4. $('#return-to-top').fadeIn(200); // Fade in the arrow
  5. } else {
  6. $('#return-to-top').fadeOut(200); // Else fade out the arrow
  7. }
  8. });
  9. $('#return-to-top').click(function() { // When arrow is clicked
  10. $('body,html').animate({
  11. scrollTop : 0 // Scroll to top of body
  12. }, 500);
  13. });

comments powered by Disqus