TOPS
Konfektionsgrößen
Marken
- Sportalm Damen Top 1712540082 Tekin
UVP 168,01 EURab 124,01 EUR ** inkl. ges. MwSt. zzgl. Versandkosten - TOM TAILOR Weiblich T-Shirt/ Langarmshirt 103679525,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";
}
}
}