Guest User

Untitled

a guest
Apr 27th, 2014
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2.     $('a[href^="#"]').on('click',function (e) {
  3.         e.preventDefault();
  4.  
  5.         var target = this.hash,
  6.         $target = $(target);
  7.  
  8.         $('html, body').stop().animate({
  9.             'scrollTop': $target.offset().top
  10.         }, 900, 'swing', function () {
  11.             window.location.hash = target;
  12.         });
  13.     });
  14. });
Add Comment
Please, Sign In to add comment