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
try this:
var self = this; this.sliderTouchUp = function() { var currentVal = $('#slider-1').val(); console.log("val change to " + currentVal); }; $('.ui-slider').live('mouseup', self.sliderTouchUp); $('.ui-slider').live('touchend', self.sliderTouchUp);