T-SHIRTS
Konfektionsgrößen
Marken
- No Excess All Over Printed Short Sleeve Stretch Shirt 9546030349,95 EUR ** inkl. ges. MwSt. zzgl. Versandkosten
- No Excess Striped Jersey Crewneck T-shirt 9535025639,95 EUR ** inkl. ges. MwSt. zzgl. Versandkosten
- TOM TAILOR Denim Herren T-Shirts & Langarmshirt 100381512,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";
}
}
}