Can you set a jQuery slider to have a maximum value of 10,000 – but then if moved at all to the left it scales as though it was a slider of between 1-50 (if they move it to the right it returns to the very high value).
So it would be something like:
min: 0,
max: 50,
secondmax: 10000, (<- this is what I need to figure out).
values: [0, 50, 10000],
We have a filter by distance slider on our job board and want it, by default to be unlimited – and then if the user moves the slider left it should scale between reasonable values (1-50).
Probably easier to handle this outside of the slider itself, for example:
You could make the slider something like 1-51. In your code for the distance filter detect a value >50 and make it perform the unlimited distance filtering (possibly just by replacing the value of 51, with 10,000)