Getting Jquery-UI slider value while sliding -
I got a jquery UI slider and I want to show the slider value in the tooltip (in the slider handler) I'm unable to get the price until the slider is turned off, but I want to update the value when the tooltip is dragged to the slider. Is there a way to get the jQuery UI slider to the current position, not the value?
slide {/ code> function
$ ( "#slider") .slider ({slide: function (event, UI) {$ ('# value'). text (ui.value);}}); Example
Comments
Post a Comment