Guest User

Untitled

a guest
Dec 9th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. HTML:
  2. <div class="wrapper">
  3. <div class="tabs">
  4. <span class="tab">Вкладка 1</span>
  5. <span class="tab">Вкладка 2</span>
  6. <span class="tab">Вкладка 3</span>
  7. </div>
  8. <div class="tab_content">
  9. <div class="tab_item">Содержимое 1</div>
  10. <div class="tab_item">Содержимое 2</div>
  11. <div class="tab_item">Содержимое 3</div>
  12. </div>
  13. </div>
  14.  
  15. jQuery:
  16. $(".tab_item").not(":first").hide();
  17. $(".wrapper .tab").click(function() {
  18. $(".wrapper .tab").removeClass("active").eq($(this).index()).addClass("active");
  19. $(".tab_item").hide().eq($(this).index()).fadeIn()
  20. }).eq(0).addClass("active");
  21.  
  22. CSS:
  23. .wrapper .active { color: red; }
Add Comment
Please, Sign In to add comment