remove readonly attribute with name jquery code example
Example: jquery remove readonly
$('#id').removeAttr('readonly');
// or
$('#id').attr('readonly', false);
$('#id').removeAttr('readonly');
// or
$('#id').attr('readonly', false);