HOSEN
Konfektionsgrößen
Kategorien
Marken
Preis
BGN
―
BGN
"use strict";
var keypressSlider = document.querySelector(".slider-keypress");
var input0 = document.querySelector(".input-with-keypress-0");
var input1 = document.querySelector(".input-with-keypress-1");
var inputs = [input0, input1];
noUiSlider.create(keypressSlider, {
start: [0, 298],
connect: true,
range: {
min: [0],
max: [298]
}
});
keypressSlider.noUiSlider.on("update", function(values, handle) {
inputs[handle].value = values[handle];
function setSliderHandle(i, value) {
var r = [null, null];
r[i] = value;
keypressSlider.noUiSlider.set(r);
}
inputs.forEach(function(input, handle) {
input.addEventListener("change", function() {
setSliderHandle(handle, this.value);
});
input.addEventListener("keydown", function(e) {
var values = keypressSlider.noUiSlider.get();
var value = Number(values[handle]);
var steps = keypressSlider.noUiSlider.steps();
var step = steps[handle];
var position;
switch (e.which) {
case 13: setSliderHandle(handle, this.value); break;
case 38: position = step[1]; if (position === false) { position = 1; } if (position !== null) {setSliderHandle(handle, value + position); } break;
case 40: position = step[0]; if (position === false) { position = 1; } if (position !== null) { setSliderHandle(handle, value - position); } break;
}
});
});
});
- CAMBIO Damen Damen Hose Culotte blau 6337 0221-03312,73 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- Marc Cain Additions Weiblich Hose TA 81.03 J26
UVP 188,91 BGNab 252,30 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Collections Damen Hose RC 81.03 J61
UVP 178,91 BGN291,41 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Top-Artikel
- CAMBIO Damen Hose lang schwarz edel 6337 0250-02332,29 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- CAMBIO Damen Hose 6111 0202-00
UVP 148,91 BGNab 273,62 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Damen Denim Hosen 9182 0015-99
UVP 148,91 BGNab 254,06 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Sportalm Damen Hose mit seitlichen Galon Streifen 9516535084
UVP 178,01 BGN215,12 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - TOM TAILOR Denim Damen Nela Jeans Denim 1/1 1026638117,33 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- Marc Cain Sports Damen Hose PS 81.42 W49
UVP 298,01 BGN369,65 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - comma Damen elegante Ankle-Pants Hose 81.009.76.2779.9999176,00 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- Top-ArtikelRaffaello Rossi Candy 251278/9987
UVP 158,96 BGNab 309,02 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Top-ArtikelRaffaello Rossi Holly Fashionhose
UVP 158,96 BGNab 309,02 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Top-ArtikelRaffaello Rossi Natina 028023/9987
UVP 168,96 BGNab 328,57 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Raffaello Rossi Sally 7/8 Schlupfhose – Stilvoll und Bequemab 252,22 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- CAMBIO "Parla" Damen Stretch Jeans
UVP 169,00 BGN312,73 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - TOM TAILOR Denim Jona Jeans 1017148
UVP 59,00 BGNab 95,83 BGN ** 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";
}
}
}