Guest User

Untitled

a guest
Jul 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. /* if you need edge support, use this instead */
  2. $(window).on('hashchange load', function()
  3. {
  4. var $anchor = $(':target'),
  5. fixedElementHeight = $('.site-navigation').height()+20;
  6. if ($anchor.length > 0)
  7. {
  8. $('html, body')
  9. .stop()
  10. .animate({
  11. scrollTop: $anchor.offset().top - fixedElementHeight
  12. }, 200);
  13. }
  14. });
Add Comment
Please, Sign In to add comment