Guest User

Untitled

a guest
Jan 16th, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $(document).ready(function() {
  2. $('a').on('click', function(){
  3. var anchor = $(this);
  4. event.preventDefault();
  5. console.log($(anchor.attr('href')).offset().top)
  6. $('html, body').stop().animate({
  7. scrollTop: $(anchor.attr('href')).offset().top
  8. }, 500, 'linear');
  9.  
  10. });
  11. });
Add Comment
Please, Sign In to add comment