Skip to content
Contact information
WhatsApp: +44 7578334081
Address:
Unit 8
Himilaya Shopping Centre
Southall
UB1 1JY
UK
- Choosing a selection results in a full page refresh.
- Opens in a new window.
}
window.addEventListener("load", function () {
if (window.innerWidth < 990) return;
// Desktop hover dropdown
document.querySelectorAll(".header__inline-menu details").forEach(function (item) {
let timer;
item.addEventListener("mouseenter", function () {
clearTimeout(timer);
item.setAttribute("open", "");
});
item.addEventListener("mouseleave", function () {
timer = setTimeout(function () {
item.removeAttribute("open");
}, 350);
});
});
});
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";
}
});