Search our site

$(document).ready(function() { // Handle switching between tabs in the slide-out menu $('.slm-tab-title li a').on('click', function(e) { e.preventDefault(); // Remove the 'active' class from all tabs and contents $('.slm-tab-title li a').removeClass('active'); $('.slm-tab-content .tab-content').removeClass('active'); // Add the 'active' class to the clicked tab and corresponding content $(this).addClass('active'); var tabId = $(this).attr('href'); $(tabId).addClass('active'); }); });