Last active
August 5, 2017 13:06
-
-
Save Rachind/568ab6cc687f2e331a71f58d5339859c to your computer and use it in GitHub Desktop.
Jquery Tabs Simple
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('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