You could use the JavaScript "ondrag" event to fire continuously. It is better than "input" due to the following reasons:
Browser support.
Could differentiate between "ondrag" and "change" event. "input" fires for both drag and change.
In jQuery:
$('#sample').on('drag',function(e){
});
Reference: http://www.w3schools.com/TAgs/ev_ondrag.asp