Skip to content

Instantly share code, notes, and snippets.

@gus3inov
Created May 6, 2017 08:21
Show Gist options
  • Save gus3inov/846166497b1a0e8ef52eb455416e500b to your computer and use it in GitHub Desktop.
Save gus3inov/846166497b1a0e8ef52eb455416e500b to your computer and use it in GitHub Desktop.
Tabs short on JQuery
<div class="wrapper">
<div class="tabs">
<span class="tab">Вкладка 1</span>
<span class="tab">Вкладка 2</span>
<span class="tab">Вкладка 3</span>
</div>
<div class="tab_content">
<div class="tab_item">Содержимое 1</div>
<div class="tab_item">Содержимое 2</div>
<div class="tab_item">Содержимое 3</div>
</div>
</div>
$(".tab_item").not(":first").hide();
$(".wrapper .tab").click(function() {
$(".wrapper .tab").removeClass("active").eq($(this).index()).addClass("active");
$(".tab_item").hide().eq($(this).index()).fadeIn()
}).eq(0).addClass("active");
.wrapper .active { color: red; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment