Skip to content

Instantly share code, notes, and snippets.

@fabiorochafg
Created January 5, 2016 19:01
Show Gist options
  • Save fabiorochafg/62ccadb65f576973c102 to your computer and use it in GitHub Desktop.
Save fabiorochafg/62ccadb65f576973c102 to your computer and use it in GitHub Desktop.
Simple tabs
<ul class="tabs">
<li><a href="#first">First</a></li>
<li><a href="#second">Second</a></li>
<li><a href="#third">Third</a></li>
</ul>
<div id="first"></div>
<div id="second"></div>
<div id="third"></div>
var tabs = $('.tabs a').click(function () {
tabs.hide().filter(this.hash).show();
}).map(function () {
return $(this.hash)[0];
});
$('.tabs li:first a').click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment