I need to configure the slider to use a non linear scale with easing at the start.
I digged into the slider part of the minified code and added 2 lines after 12341...
12341 opts.value=_933;
----- var slider_ease_in_factor = 0.5
----- opts.value = Math.round(Math.pow(opts.value/opts.max,slider_ease_in_factor)*opts.value);
... which does what I want to the ToolTip but I can't work out how to get it saved to the input value so that it gets returned with the form.
Anyway I'm sure it should be possible by extending the slider object and not digging into the sourcecode.
Anyone got any suggestions. Thanks. Stu.