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

Popular posts from this blog

Delphi change the assembly code of a running process -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -

C++ 11 "class" keyword -