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.

jQuery increment slider: how can I set the slider to increment by .01? I set the step to "step: .01," but the slider does not increment by .01 it increment by .1

The slider needs to increase by $.01 cents so that our customers can keep track of every penny in their account.

share|improve this question
You need to state what jQuery plugin you're using to create the slider. If it's jQuery UI, state that explicitly. – ebohlman Sep 28 '12 at 14:52

2 Answers

You can't, otherwise the value wouldn't be an integer.

There have been efforts to allow decimal steps using the slider, the one seeming to be successful (though I haven't examined in great detail) requires hacking the jQuery UI library itself to add decimal support.

share|improve this answer

i just tested it and does work but you have to set the step:0.01, you can test your self this is the example i was working on for yaxis and x-axis. i hope this helps and that its not too late

<script>$(document).ready(function(){

 $( "#x" ).slider({
        range: true,
        min: -6,
        max: +6,
        step:0.01,
        values: [0,2],
        slide: function( event, ui ) {
           $( "#amountx" ).val( ui.values[ 0 ] + " - " + ui.values[ 1 ] );
        }
    });

     $( "#y" ).slider({
        range: true,
        orientation: "vertical",
        min: -12,
        max: 12,
        step:0.01,
        values: [1,2],
        slide: function( event, ui ) {
            $( "#amounty" ).val( ui.values[ 0 ] + " - " + ui.values[ 1 ] );
        }
    });
   $( "#amountx" ).val(  $( "#x" ).slider( "values", 0 ) +
        " - " + $( "#x" ).slider( "values", 1 ) );
     $( "#amounty" ).val( $( "#y" ).slider( "values", 0 ) +
        " - " + $( "#y" ).slider( "values", 1 ) );});</script>
<style>#x{top:115px;width:230px;}#y{height:230px;}</style><div id='x'></div><div id='y'></div><input type='text' id='amountx'/><input type='text' id='amounty'/>
share|improve this answer
please give me your feedback if this was helpful or not – Bakly Dec 29 '12 at 15:43

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.