Advertisement
Guest User

Untitled

a guest
Jul 21st, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. $('.scroll').click(function () {
  2. var scroll_el = $(this).attr('href');
  3. if ($(scroll_el).length != 0) {
  4. $('html, body').animate({
  5. scrollTop: $(scroll_el).offset().top -40
  6. }, 400);
  7. }
  8. return false;
  9. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement