Skip to content

Instantly share code, notes, and snippets.

@app06
Created February 27, 2018 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save app06/2d1377583497a4241b34574a459517a2 to your computer and use it in GitHub Desktop.
Save app06/2d1377583497a4241b34574a459517a2 to your computer and use it in GitHub Desktop.
// tabs
$('.controls').on('click', '.controls__link', function(e) {
e.preventDefault();
var
item = $(this).closest('.controls__item'),
content = $('.content__item'),
itemIdx = item.index();
content.eq(itemIdx)
.add(item)
.addClass('active')
.siblings()
.removeClass('active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment