Skip to content

Instantly share code, notes, and snippets.

@carbone
Created February 18, 2021 21:47
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 carbone/178f7924fb67293b5bcd3fb66d4ca45b to your computer and use it in GitHub Desktop.
Save carbone/178f7924fb67293b5bcd3fb66d4ca45b to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$('ul.tabs li').click(function(){
var tab_id = $(this).attr('data-tab');
$('ul.tabs li').removeClass('current');
$('.tab-content').removeClass('current');
$(this).addClass('current');
$("#"+tab_id).addClass('current');
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment