I have a jquery mobile slider on a simple page. When I drag the slider, the value updates as expected in the textbox. I have looked but cannot find where this logic is happe
I'm not too familiar with jquery mobile, but adding a change handler to the original input element should do:
$('#slider-1').change(function(){ var slider_value = $(this).val() console.log(slider_value) // do whatever you want with that value... })
Hope this help,
Martin