GÜRTEL
Kategorien
Konfektionsgrößen
- TOM TAILOR Weiblich Gürtel 4016523
UVP 29,00 EURab 25,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";
}
}
}