jquery slider needs only slider no change event -


i working on jquery slider needed customization on that.

i need make behave fader movement slider . should not move if dont move fader . not change event change slider movement

$( "#master_volume" ).slider({   value: 25.0,   orientation: "horizontal",   range: "max",   //animate: true,   min: 0,   max: 100,   step: 0.1,   handle: '#myhandle',   slide: function(event, ui) {     $("#volume").text($("#master_volume").slider("value"));     },   change: function(event) {     if (event.originalevent) {     }   } }); 


Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -