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
Use this code,
$( ".mySliders" ).slider({ create: function (event, ui) { $(this).bind('change', function () { }); } });
Do not put type="range" to your input tags, put type="text" instead.
type="range"
type="text"
Since you are calling slider function manually.