top of page
bottom of page
$w.onReady(function () {
const interval = setInterval(() => {
const all = Array.from(document.querySelectorAll("*"));
for (const el of all) {
if (
el.children.length === 0 &&
el.textContent &&
el.textContent.includes("Tax & Fees (")
) {
el.textContent = el.textContent.replace(/\s*\(\d+%?\)\s*/g, "");
}
}
}, 500);
// stop after 10 seconds
setTimeout(() => clearInterval(interval), 10000);
});