Multiple Sliders Values
Multiple Sliders Values
Hi, I'm using the core UI slider plugin with jQuery 1.2.1.
I'm trying to use the slider with two handlers, but I don't know how
to get the value of the second handler.
This is the code I use, which provides the value of the first handler
only:
$("#example").slider(
{
slide: function(e, ui)
{ document.getElementById('low').innerHTML = ui.value; },
minValue: 0,
maxValue: 500000,
stepping: 10000
}
);