TOM TAILOR Damen
Konfektionsgrößen
Marken
- -20%
- -20%
- -14%
- -20%
- TOM TAILOR Damen Jacken 1042914
UVP 159,00 EURab 114,99 EUR ** inkl. ges. MwSt. zzgl. Versandkosten - TOM TAILOR Weiblich Jacke 1042913
UVP 129,00 EURab 94,99 EUR ** inkl. ges. MwSt. zzgl. Versandkosten
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";
}
}
}