Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to get the jQuery slider to have set values to slide to as opposed to every number between the min & max amounts.

I'm wanting "0, 25, 50, 100, 250, 500" as the only amounts people can slide too but can't work out how it's done. Putting them in the "Values" part doesn't seem to do anything.

<script type="text/javascript">
$(function() {
	$("#slider-range").slider({
		range: true,
		min: 0,
		max: 500,
		values: [100, 250],
		slide: function(event, ui) {
			$("#amount").val('Miles: ' + ui.values[0] + ' - ' + ui.values[1]);
		}
	});
	$("#amount").val('Miles: ' + $("#slider-range").slider("values", 0) + ' - ' + $("#slider-range").slider("values", 1));
});
</script>
share|improve this question

1 Answer

up vote 11 down vote accepted

The values initializer is for providing the starting positions of multiple-thumb sliders.

I would provide an array of the possible values, change the slider to map over the range of that array, and then change your presentation bit to read from the appropriate array element.

$(function() {
    var valMap = [0, 25, 50, 100, 250, 500];
    $("#slider-range").slider({
    	min: 0,
    	max: valMap.length - 1,
    	values: [0, 1],
    	slide: function(event, ui) {                        
    		$("#amount").val('Miles: ' + valMap[ui.values[0]] + ' - ' + valMap[ui.values[1]]);                
    	}       
    });
    $("#amount").val('Miles: ' + valMap[$("#slider-range").slider("values", 0)] + ' - ' + valMap[$("#slider-range").slider("values", 1)]);
});
share|improve this answer
+1 This works marvelously! Great if you want the values to have a fixed visual amount of width between them. Now I only need to extend the CJuiSliderInput to implement this behaviour in Yii ;) – Tommy Bravo Aug 5 '11 at 9:19

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.