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;
}
});
});
});
- Marc Cain Collections Damen Hose XC 81.60 W49
UVP 298,01 BGNab 582,83 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Raffaello Rossi D Hose 251278/9987
UVP 158,96 BGNab 309,02 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Damen Hose 6045 0308-00
UVP 188,91 BGNab 367,69 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Raffaello Rossi Damen Hose 026102/6824 Palina
UVP 168,96 BGNab 293,35 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Damen Hose 6632 0283-08
UVP 168,91 BGNab 271,86 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - CAMBIO Weiblich Damenhose lang sonstige 6618 0265-16
UVP 198,91 BGN310,97 BGN ** inkl. ges. MwSt. zzgl. Versandkosten - Marc Cain Collections Weiblich Hose WC 81.49 W35543,73 BGN ** inkl. ges. MwSt. zzgl. Versandkosten
- CAMBIO Damen Hose 6633 0283-16
UVP 198,91 BGNab 330,53 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";
}
}
}