Bind events directly to the input element. Use jQuery Mobile's virtual events, or bind standard JavaScript events, like change, focus, blur, etc.:
input
$("input[type='radio']").bind( "change", function(event, ui) { ... });
The radio button plugin has the following custom events:
create
$("input[type='radio']").checkboxradio({ create: function(event, ui) { ... } });