how can i remove read only attribute on using jquery code example
Example: jquery remove readonly
$('#id').removeAttr('readonly');
// or
$('#id').attr('readonly', false);
$('#id').removeAttr('readonly');
// or
$('#id').attr('readonly', false);