Advertisement
Guest User

Untitled

a guest
Aug 17th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. <script>
  2. jQuery(document).ready(function($) {
  3. $('.tab-title').each(function () {
  4. var section_id = $(this).find("a").attr("href");
  5. $(this).find("a").removeAttr("href");
  6. $(this).click(function() {
  7. $(this).siblings().removeClass("active-tab");
  8. $(this).addClass("active-tab");
  9. $('.tab-content').hide();
  10. $(section_id).show();
  11. $('html, body').animate({scrollTop: $(section_id).offset().top - 97}, 1000);
  12. });
  13. });
  14. });
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement