Is there a javascript (jquery) slider that limits the values independently of the display values? - Stack Overflow

I wish to have a slider that is from 0-100 but that is only selectable from 0-75 (for example)An exampl

I wish to have a slider that is from 0-100 but that is only selectable from 0-75 (for example)

An example look would be something like this, with the slider restricted from entering the coloured region

Clearly I would like to be able to set the max, min, limit and value of the slider...

As far as I can see the jquery UI Slider does not allow this out of the box. I expect it is possible to extend the basic behaviour but I would need a very clear hand holding to make that work!

I wish to have a slider that is from 0-100 but that is only selectable from 0-75 (for example)

An example look would be something like this, with the slider restricted from entering the coloured region

Clearly I would like to be able to set the max, min, limit and value of the slider...

As far as I can see the jquery UI Slider does not allow this out of the box. I expect it is possible to extend the basic behaviour but I would need a very clear hand holding to make that work!

Share Improve this question asked Aug 22, 2011 at 14:43 LooferLoofer 6,9939 gold badges65 silver badges106 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

You can use the slide event of slider plugin which is triggered on every mouse move during slide. Use ui.value to obtain the value of the current handle and check for the max limit and return false. Returning false from this callback prevents the slide.

$(".selector").slider({
   slide: function(event, ui) { 
       if(ui.value > 75){//Note the value of ui.value is between 0 to 99
          return false;
       }
   }
});

For the background color of the slider you can easily achieve it through css.

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745182493a4615483.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信