Advertisement
shuvocse

Jquey Smooth Scroll By ID

Nov 18th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('a[href^="#"]').on('click', function(event) {
  2.  
  3.         var target = $( $(this).attr('href') );
  4.    
  5.         if( target.length ) {
  6.             event.preventDefault();
  7.             $('html, body').animate({
  8.                 scrollTop: target.offset().top
  9.             }, 1000);
  10.         }
  11.    
  12.     });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement