Hi, I'm talking about http://interface.eyecon.ro/demos/slider_minmax.html
I'm trying to create a more usable version of the slider: The slider gets information about price from my script, so I need to pass two numbers (e.g. $20 -500 - it means that indicators should take there positions approx in the center of the bar) The slider has method for setting indicator positions, but SliderSetValues() accepts strange int numbers, really. E.g. if you call SliderSetValues with [[ -40, 0]] it is approximately the bar start. I've looked through the source code, the author uses jQuery.iSlider.dragmoveBy(this.dragElem, [-2000, -2000] ); if he need to put the indicator at the beginning of the slider bar (actually [-1000, -1000] do the same thing ) - does it mean that there is no way to get the exact address of the beginning or of the middle (or 33%) of the slider to put inidcator there programmatically? Thanks in advance, guys.