how disable read only in text code example
Example: js remove readonly attribute
document.getElementById('myButton').onclick = function() {
document.getElementById('myInput').removeAttribute('readonly');
};
document.getElementById('myButton').onclick = function() {
document.getElementById('myInput').removeAttribute('readonly');
};