Advertisement
Guest User

t

a guest
Jun 19th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. if ( window.location.href.indexOf("#") > -1) {
  2. $('a[href*=\\#]').on('click', function(event) {
  3. event.preventDefault();
  4. $('html,body').animate({
  5. scrollTop: $(this.hash).offset().top
  6. }, 750);
  7. });
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement