Guest User

Untitled

a guest
Feb 25th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. // Where hash is the target element to scroll to
  2. $('html, body').animate({
  3. scrollTop: $(hash).offset().top
  4. }, 800, function(){
  5.  
  6. // Add hash (#) to URL when done scrolling (default click behavior)
  7. window.location.hash = hash;
  8. });
Add Comment
Please, Sign In to add comment