<input class="slider is-fullwidth is-large is-primary" step="1" min="0" max="100" type="range" id="some_id" value="15">
<script>
$(".slider").change(function() {
...
}
</script>
This event works, but only when I have released the mouse/finger from the (bulma) slider. Is there a way to make jQuery to notify me while the slider is changing without the need to release the mouse/finger?