HOSEN
Kategorien
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;
}
});
});
});
- TOM TAILOR Weiblich Hose 1041923
UVP 69,00 BGNab 88,01 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Hose Glanz 6010 0283-13
UVP 188,91 BGNab 367,69 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Additions Weiblich Hose WA 81.05 J24
UVP 198,91 BGN387,25 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - NeuheitCAMBIO Damen Hose rot 6320 0256-03
UVP 168,91 BGNab 328,57 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Sports Damen Hose Washington Mustermix WS 81.35 J11
UVP 228,01 BGNab 291,41 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Sports Weiblich Hose Welby WS 81.12 J09445,94 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- NeuheitSportalm Damen Hose 1716506082 Ghost
UVP 198,01 BGNab 387,25 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Top-ArtikelRaffaello Rossi D Hose 2193133014
UVP 188,96 BGN310,97 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Sports Weiblich Hose WILLMAR WS 81.25 W28
UVP 228,01 BGN445,92 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Collections Weiblich Hose rot WC 81.13 W22
UVP 228,01 BGNab 369,65 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Raffaello Rossi Hose 219373014
UVP 178,96 BGNab 330,53 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Collections Hose Samt VC 81.54 W97
UVP 278,01 BGN447,88 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Damen Hose lila 6316 0342-00
UVP 169,00 BGNab 252,30 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Sports Weiblich Hose Leo Print VS 81.27 J07
UVP 198,91 BGN330,53 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Essentials Damen Hosen +E 81.01 J35ab 291,41 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- Top-ArtikelCAMBIO Da Hose braun 6512 0226-03
UVP 168,91 BGNab 291,41 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";
}
}
}