Advertisement
afsarwebdev

js anchor scroll for specific section with top-offset

Apr 9th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. /*scroll bellow when click*/
  2. $(".ic-blogvideo").click(function(e) {
  3. e.preventDefault();
  4. var aid = $(this).attr("href");
  5. $('html,body').animate({scrollTop: $(aid).offset().top - 90},'slow');
  6. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement