Advertisement
Guest User

Untitled

a guest
Feb 10th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. $.fn.scrollView = function () {
  2. return this.each(function () {
  3. $('html, body').animate({
  4. scrollTop: $(this).offset().top
  5. }, 1000);
  6. });
  7. };
  8.  
  9. $(function() {
  10. /**
  11. * Scroll to the top
  12. */
  13. $("#to-the-top").on("click", function(e) {
  14. e.preventDefault();
  15. $('header').scrollView();
  16. });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement