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
Michael. Try to surround the slider with another element:
And you can get an event on change:
$("#div-slider").change(function() { var slider_value = $("#slider-1").val(); // do something.. });