Guest User

Untitled

a guest
Jan 23rd, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $('a[href^="#"]').on('click', function (e) {
  2. e.preventDefault();
  3.  
  4. let section = $(this).attr("href");
  5. if (section.length) {
  6.  
  7. let offset = $(section).offset().top;
  8.  
  9. $('html,body').animate({
  10. scrollTop: offset
  11. }, 600);
  12.  
  13. }
  14.  
  15. });
Add Comment
Please, Sign In to add comment