Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
}
document.addEventListener("click", function (event) {
var tab = event.target.closest(".madhanaa-tab");
if (!tab) return;
event.preventDefault();
var targetId = tab.getAttribute("data-tab");
if (!targetId) return;
document.querySelectorAll(".madhanaa-tab").forEach(function (item) {
item.classList.remove("active");
});
document.querySelectorAll(".madhanaa-tab-content").forEach(function (content) {
content.classList.remove("active");
content.style.display = "none";
});
tab.classList.add("active");
var target = document.getElementById(targetId);
if (target) {
target.classList.add("active");
target.style.display = "block";
}
});