views:

287

answers:

1

I have a jQuery slider initialized and then dynamically set min max values depeding on the contents of a json-request. Steps av even 100, min a max are recalculated to even hundred, most of the case somewhere between 300 and 4800.

The slider values and settings are fine, but when I move the handle I can't get it all the way out to the ends, it stops a few steps from min/max values. Why is that?

I've tried all sorts of things, nothing works. I ended up adding 200 at the top value and subtracting 200 in the lower and to compensate, but that's is a hack and not a solution.

A: 

In your 'slide' callback, try using ui.value to get the value. This solved my problem. See http://stackoverflow.com/questions/621147/jquery-ui-slider-cant-slide-to-0 except don't go by the answer, go by the comment to the answer.

Ben