This page is not a refrence for the slider widget it is just sample content do not refrence this page for slider widget usage! For the slider widget please see Slider Widget
Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:
input
$( ".selector" ).bind( "change", function(event, ui) { ... });
The slider plugin has the following custom event:
create
$( ".selector" ).slider({ create: function(event, ui) { ... } });
slidestart
$( ".selector" ).on( 'slidestart', function( event ) { ... });
slidestop
$( ".selector" ).on( 'slidestop', function( event ) { ... });