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 highly suggest checking out w3schools tutorial on this.
http://www.w3schools.com/jquerymobile/jquerymobile_events_intro.asp
The crucial piece of code that you are missing is:
$(document).on("pageinit","#pageone",function(){
// PLACE ALL YOU EVENTS CODE HERE e.g.
$( "#slider" ).on( 'slidestop', function( event ) {
alert ('hi');
});
}
Make sure your content is prefixed with: