TOM TAILOR Damen
Konfektionsgrößen
Marken
- -20%TOM TAILOR Weiblich Bluse 1041688
UVP 49,00 EURab 39,00 EUR ** inkl. ges. MwSt. zzgl. Versandkosten - -23%
- -24%
- -17%TOM TAILOR Weiblich Mäntel 1040486
UVP 119,00 EUR99,00 EUR ** inkl. ges. MwSt. zzgl. Versandkosten - -23%
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";
}
}
}