I am using this code to get the value of a slider:
<input type="range" min="30" max="300" value="30" (change)="valueChanged($event)"></div>
Unfortunately, the valueChanged
method is triggered on mouse up. How can I be notified of changes continuously as the thumb is dragged?
(onmousemove)
does not work.