So is there a way to disable mousedown and / or click event on input range element but at the same time let user drag slider around and still fire on change event?
Disabl
You could use pure CSS
#slider { pointer-events: none; }