Skip to content

Instantly share code, notes, and snippets.

@Rachind
Last active August 5, 2017 13:06
Show Gist options
  • Save Rachind/568ab6cc687f2e331a71f58d5339859c to your computer and use it in GitHub Desktop.
Save Rachind/568ab6cc687f2e331a71f58d5339859c to your computer and use it in GitHub Desktop.
Jquery Tabs Simple
$('ul.tabnav').on('click', 'li:not(.active)', function(e) {
e.preventDefault();
$(this).addClass('active').siblings().removeClass('active').parents('div.boxes').find('div.box').eq($(this).index()).fadeIn(150).siblings('div.box').hide();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment