PULLOVER
Konfektionsgrößen
Marken
- No Excess Stone Washed Crewneck Pullover 94231109655,07 SEK ** inkl. ges. MwSt. zzgl. Versandkosten
- TOM TAILOR Denim Herren Pullover grün gelb 1013694546,24 SEK ** 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";
}
}
}