Denis Ineshin

Results 232 comments of Denis Ineshin

If you want to block movement completely, you could use allowed range attributes, like this: ```javascript from_min: 115, from_max: 115, ``` Check 2-nd demo here: http://ionden.com/a/plugins/ion.rangeSlider/demo_advanced.html#a_handles

Hello, @PeterBrain. Indeed feature seemed to be interesting. But, where is no problem to combine the slider with external histogram right now. You could even use some powerful chart library...

Hi, basically sliders CSS file could be altered as you want.

Custom values are doable with `values: ['$1,000', '$10,000', ...]` Step of `$1,000` is doable with `step: 1000` parameter. But you can't archive both at the same time. You could simulate...

@mh19971967, You mean the label? Yes, add this to params: hide_from_to: true

```javascript var mySlider = $("#slider").data("ionRangeSlider"); function myreset() { mySlider.reset(); } ```

Then you need to store original values in a separate variables, and instead of `reset()` do slider `update({from: x, to: y})`

This question is already not related. You should ask it on StackOverflow, Toster.ru etc.

Hello, this is more general question and should be asked on Stack Overflow forum. Please proceed where.

Hi, you forgot about handle size. Handle have >0 width, so you should count that number in your calculations.