TOM TAILOR Damen
Konfektionsgrößen
Marken
- TOM TAILOR Damen Anzüge / Blazer / Sakkos 1038703ab 59,00 EUR ** inkl. ges. MwSt. zzgl. Versandkosten
- Neuheit
const crossprices = document.getElementsByClassName('crossprice');
const prices = document.getElementsByClassName('price');
for (let i = 0; i < crossprices.length; i++) {
if (crossprices[i].innerText.trim() !== "") {
if (prices[i]) { // Ensure a corresponding .price element exists
prices[i].style.color = "red";
}
}
}