Radio buttons

Home

Radio buttons

Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:

 
$("input[type='radio']").bind( "change", function(event, ui) {
  ...
});

The radio button plugin has the following custom events:

create triggered when a radio button is created

$("input[type='radio']").checkboxradio({
   create: function(event, ui) { ... }
});