Mouse event is not firing. Need to know the hold event so can disable the update of slider value. my code is,
var sliding = false;
function update_seek_value(value){
if(!sliding){
$("#replay-slider").val(value).change();
}
}
$('.slider_button_class_name').on('mousedown',function(){
sliding = true;
});
Hope this helps!