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

assembly - What is the addressing mode for ld, add, and rjmp instructions? -

vowpalwabbit - Interpreting Vowpal Wabbit results: Why are some lines appended by "h"? -

ubuntu - Bash Script to Check That Files Are Being Created -