jquery set element disabled code example
Example 1: using jquery how to add disabled to a html tag
$(element). prop('disabled', true);
Example 2: jq html remove disabled
$('.disabledCheckboxes').removeAttr("disabled");
$(element). prop('disabled', true);
$('.disabledCheckboxes').removeAttr("disabled");