Demo of disable method of checkboxradio
This method does not accept any arguments.
By clicking the
disable checkboxradio button you can disable the checkboxradio. You can show again by Refreshing the page.
Disable method removes the functionality of checkboxradio along with the buttons completely.
jquery
<script>
$(document).ready(function() {
/////////
$( "#my_checkboxradio" ).checkboxradio({
});
///////
$('#b1').click(function(){
$( "#my_checkboxradio" ).checkboxradio( "disable" );
})
///
})
</script>