Demo of enable method of checkboxradio




This method does not accept any arguments.

By clicking the enable checkboxradio button you can enable the checkboxradio. You can test again by Refreshing the page.

jquery

<script>
$(document).ready(function() {	
/////////
$( "#my_checkboxradio" ).checkboxradio({
});
///////
$('#b1').click(function(){
$( "#my_checkboxradio" ).checkboxradio( "enable" );
})
///
})
</script>