Skip to content

Instantly share code, notes, and snippets.

@fredericAerts
Created January 19, 2016 18:38
Show Gist options
  • Save fredericAerts/105bbcefb2bb47aad939 to your computer and use it in GitHub Desktop.
Save fredericAerts/105bbcefb2bb47aad939 to your computer and use it in GitHub Desktop.
web developer in 3 days - v8
$(window.document).ready(function() {
$('.tab-links-item').click(function() {
if( !$(this).hasClass('active') ) {
// update tabs
$(this).siblings().removeClass('active');
$(this).addClass('active');
// update panes
var $targetPane = $($(this).attr('href'));
$targetPane.siblings().hide();
$targetPane.show();
}
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment