|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/.trash/public.bak300125/assets/theme/public/js/ |
Upload File : |
/**
* Product tab on product highlight
*/
document.addEventListener('DOMContentLoaded', function () {
var tabs = document.querySelectorAll('.tab-link');
var tabPanes = document.querySelectorAll('.content-tab-pane');
tabs.forEach(function (tab) {
tab.addEventListener('click', function () {
var tabName = this.getAttribute('data-tab');
var tabPane = document.getElementById(tabName);
// Show the current tab and hide all others
tabPanes.forEach(function (pane) {
pane.classList.remove('active');
});
tabPane.classList.add('active');
// Set the active tab and remove the active class from others
tabs.forEach(function (tab) {
tab.classList.remove('tab-active');
});
this.classList.add('tab-active');
});
});
// Click on the first tab by default
tabs[0].click();
});