Checkbox and Radio Button Events
Description
The checkboxradio create event is triggered when a checkbox or radio button is created.
This event is triggered when a custom checkbox or radio button is created. It is not used to create a custom element.
Example
$('#element1' ).checkboxradio({
theme: "e",
create: function(event) {
console.log( "Creating new element..." );
}
});