0

1- the value on slider is showing $10 and not whowing 10.00 , and more ! 2 and how we set the slider like this is http://loopj.com/jquery-simple-slider/demo.html Predefined List, Equal Steps & Snap

1 Answers1

0

Use toFixed():

var x = 10;
x.toFixed(2); // outputs 10.00
kapantzak
  • 10,937
  • 4
  • 36
  • 54