disable jquery input code example
Example 1: jquery disable input
$("#inputID").prop('disabled', true);
$("#inputID").prop('disabled', false);
$("#inputID").attr('disabled','disabled');
$("#inputID").removeAttr('disabled');
Example 2: enable input jquery
$('input').prop('disabled', false);
Example 3: 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");
});
});