user interface - Use condition on jquery UI slider plugin -
user interface - Use condition on jquery UI slider plugin -
i using jquery ui range slider. want apply status on value. eg if slider head @ in 0 want show error message. how can that? thanks
this plugin link
https://github.com/simeydotme/jquery-ui-slider-pips
actually has nil pips plugin, can $.ui.slider plugin using slidestop
event:
$(".slider") .slider({ /* ... */ }) .slider("pips", { /* ... */ }) .on( "slidestop", function( event, ui ) { if( ui.value === 0 ) { /* show error */ } });
how helps you, , hope enjoy pips plugin! :)
jquery user-interface slider
Comments
Post a Comment