Sliders

Home

Slider

Bind events directly to the input element (the framework will automatically update the slider widget). Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

 
$( ".selector" ).bind( "change", function(event, ui) {
  ...
});

The slider plugin has the following custom event:

create triggered when a slider is created

$( ".selector" ).slider({
   create: function(event, ui) { ... }
});