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 using this code and it works in jquery mobile 1.4.3.
$(".ui-slider").on('change', function(event) { var valuenow = $(this).find(".ui-slider-handle").attr("aria-valuenow"); console.log(valuenow); });