+ 12
How can I create a slider that updates while sliding?
The normal HTML sliders in combinaton with the onchange attribute only update when the slider is released and not onchange. Is there a way to remove this issue?
1 Odpowiedź
+ 8
do you mean like this ?
for computer (mouse)
<input type="range" onmousemove="changeValue(this.value)">
for touch screens
<input type="range" ontouchmove="changeValue(this.value)">