Advertisement
Guest User

Untitled

a guest
Mar 30th, 2015
258
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(function() {
  2.   $('a[href*=#]:not([href=#])').click(function() {
  3.     if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
  4.       var target = $(this.hash);
  5.       target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
  6.       if (target.length) {
  7.         $('html,body').animate({
  8.           scrollTop: target.offset().top
  9.         }, 1000);
  10.         return false;
  11.       }
  12.     }
  13.   });
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement