Aftorres02
6/26/2018 - 1:48 PM

disable property , propiedad desabilitado

readonly

$defText.find('.gcf_crud').prop('disabled', true);
 
$("#elementID").prop("disabled", true);

 $("#elementID").removeAttr('disabled');
 
 
 jQuery <1.9

$('#inputId').attr('readonly', true);
jQuery 1.9+

$('#inputId').prop('readonly', true);


$('input').attr('readonly', true);
$(#input').removeAttr('readonly');

$('#P15796_VALUE_TYPE_NO').css('pointer-events','none');