$(document).ready(function() { // Activate the first tab $(".tabs li:first-child").addClass("active"); $(".tab-content .tab:first-child").addClass("active");
// Handle tab switching $(".tabs li a").click(function(e) { e.preventDefault();
// Remove active class from all tabs and tab content $(".tabs li").removeClass("active"); $(".tab-content .tab").removeClass("active");
// Add active class to the clicked tab and corresponding tab content $(this).parent().addClass("active"); $($(this).attr("href")).addClass("active"); }); });