I\'m testing the slider events in jQueryMobile and I must been missing something.
page code is:
I found a much simpler solution to this problem. Using this code, you can retrofit start and stop events onto the slider.
$('.ui-slider').live('mousedown', function(){$('#'+id).trigger('start');});
$('.ui-slider').live('mouseup', function(){$('#'+id).trigger('stop');});
$('.ui-slider').live('touchstart', function(){$('#volumeSlider').trigger('start');});
$('.ui-slider').live('touchend', function(){$('#volumeSlider').trigger('stop');});