PULLOVER
Kategorien
Konfektionsgrößen
Marken
- Marc Cain Sports Damen Pullover YS 41.25 M17
UVP 248,01 EURab 248,00 EUR ** inkl. ges. MwSt. zzgl. Versandkosten - OPUS Pullover Stehbund 80 Piblocki
UVP 89,00 EURab 79,00 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";
}
}
}