Advertisement
Guest User

Untitled

a guest
May 23rd, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript"> lp.jQuery(function($) {
  2.  
  3. // The speed of the scroll in milliseconds
  4. var speed = 1000;
  5.  
  6. // Find links that are #anchors and scroll to them
  7. $('a[href*="#"]:not([href="#"])').unbind('click.smoothScroll').bind('click.smoothScroll', function(event) {
  8. event.preventDefault();
  9. $('html, body').animate({ scrollTop: $( $(this).attr('href') ).offset().top }, speed);
  10. });
  11.    
  12. });
  13. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement