Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Look at this demo of the jQuery UI Slider.

Notice how when the handle is down the bottom, the value is 0?

Is there a way to reverse this, so the handle up the very top is 0, and the handle down the bottom is the max range?

I've played a bit with the options, but so far have been unable to get it to work.

Thanks.

share|improve this question

3 Answers

up vote 11 down vote accepted

Don't reverse it, take the easy way out :) Just subtract the value from your max, for example:

$("#slider-vertical").slider({
    orientation: "vertical",
    range: "min",
    min: 0,
    max: 100,
    slide: function(event, ui) {
        $("#amount").val(100 - ui.value);
    }
});

This just goes max-value, effectively reversing it, you can see a quick demo here.

share|improve this answer
Thanks Nick! :) – alex Jun 21 '10 at 11:33
The trouble with this is that the 'fill in' is still growing from bottom to top. I also want a top-to-bottom version of this, with the fill-in working that way too. Time to start hacking... – Elbin Oct 4 '12 at 10:22
1  
Just change range to "max" – Iain M Norman Nov 15 '12 at 15:33
@IainMNorman doesn't work for me. absolute value answer is most workable for me. – Gracchus Mar 31 at 16:58
$(function() {
    $("#slider-vertical").slider({
      orientation: "vertical",
      range: "max", // <--- needed...
      min: 0,
      max: 100,
      value: 60,
      slide: function(event, ui) {
        $("#amount").val(100 - ui.value); // basic math operation..
      }
    });
  });

demo...

share|improve this answer
+1 thanks for taking the time to help – alex Jun 21 '10 at 11:34

Probably, usage of negative values will be more elegant:

$('#slider').slider({
    min: -100,
    max: 0,
    value: -50,
    step: 1
});

Just use absolute value, instead of an actual one, where you need it.

share|improve this answer
until they have a new option for this issue, this is the correct answer. i wish i could +2 considering the cleverness – Gracchus Mar 31 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.