Hi everyone. I've just started using the JQuery UI Slider, and
everything has been working very well, except that I can't get both
handles on a range slider to select the same value (a range of 0).
I've seen it done on other JQuery-based range sliders, but I haven't
seen anything relevant in the documentation. Any ideas?

Thanks,
Eric

(Code to follow, in case it helps... the things that don't look like
jquery selector strings are javascript vars with jquery selector
strings)
jq(sliderBarID).slider({
                handle: ".slider_handle",
                min: jq(lowTagName).text(),
                max: jq(highTagName).text(),
                stepping:stepSize,
                range:true,
                start: function(e, ui) {
                        jq(calloutID).fadeIn("fast", function() { calloutVisible
= true;});
                },
                stop: function(e, ui) {
                        if(jq(calloutID).attr("display")=="none"){
                                jq(calloutID).fadeIn("fast", function() { 
calloutVisible
= true;});
                        jq(calloutID).css("left",
ui.handle.css("left")).text(Math.round(ui.value));
                        }

                        jq(calloutID).fadeOut("fast", function() {});
                        reloadAll();
                },
                slide: function(e, ui) {
                        jq(calloutID).css("left",
ui.handle.css("left")).text(Math.round(ui.value));
                }
   });

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to