Search and Top Navigation
#4311 closed bug (worksforme)
Opened March 10, 2009 06:49AM UTC
Closed March 18, 2009 12:44PM UTC
Last modified October 11, 2012 09:15PM UTC
Not able to get the slider value when i move the slider handle
Reported by: | psranjith | Owned by: | |
---|---|---|---|
Priority: | major | Milestone: | |
Component: | ui.slider | Version: | 1.6rc6 |
Keywords: | Cc: | psranjithkumar@gmail.com | |
Blocked by: | Blocking: |
Description
I am using jquery 1.3.2 and jQuery UI Slider.js 1.6rc6 and i am
not able to get the slider value when i move the slider handl.
Previously i was using jquery 1.2.6 and ui.slider.js 1.6 and i was able to retreive the value while moving the slider handle.
Please help to fix the problem
Attachments (0)
Change History (3)
Changed March 10, 2009 12:31PM UTC by comment:1
Changed March 18, 2009 12:44PM UTC by comment:2
resolution: | → worksforme |
---|---|
status: | new → closed |
Inside the slide callback you can get the value by the ui.value property. Example:
$("#slider").slider({ slide: function(event, ui) { console.log(ui.value); } });
Here's a complete demo using jQuery UI 1.7 and jQuery 1.3.2:
Changed October 11, 2012 09:15PM UTC by comment:3
milestone: | TBD |
---|
Milestone TBD deleted
even when used slider.js 1.7 and core.js 1.7 with jquery 1.3.2.js, i am not able to get the current value when the slider handle is moved.