Skip to content

Instantly share code, notes, and snippets.

@GoodNew5
Last active June 3, 2017 13:42
Show Gist options
  • Save GoodNew5/69b548d6e168f99dd89d292235125b72 to your computer and use it in GitHub Desktop.
Save GoodNew5/69b548d6e168f99dd89d292235125b72 to your computer and use it in GitHub Desktop.
js__tabs
function tabs(domElement){
var active = 'active';
var content = $('.tab-content__item');
$(domElement).click(function () {
var index = $(this).index();
content.eq(index).addClass(active).siblings().removeClass(active);
$(this).addClass(active).siblings().removeClass(active);
});
}
tabs('.tab-links__item');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment