disabled jquery code example
Example 1: jquery disable input
$("#inputID").prop('disabled', true);
$("#inputID").prop('disabled', false);
$("#inputID").attr('disabled','disabled');
$("#inputID").removeAttr('disabled');
Example 2: using jquery how to add disabled to a html tag
$(element). prop('disabled', true);
Example 3: jquery enable textbox
$( "#x" ).prop( "disabled", true );
$( "#x" ).prop( "disabled", false );
Example 4: enable input jquery
$('input').prop('disabled', false);
Example 5: jq html remove disabled
$('.disabledCheckboxes').removeAttr("disabled");
Example 6: not disabled jquery
$(document).ready(function(){
$(':checkbox.selectall').on('click', function(){
$(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').prop("checked", $(this).prop("checked"));
$(':checkbox[class='+ $(this).data('checkbox-name') + ']:not(:disabled)').trigger("change");
});
});