Advertisement
Guest User

jquery soft scroll

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