js remove readonly attribute

JavaScript
document.getElementById('myButton').onclick = function() {
    document.getElementById('myInput').removeAttribute('readonly');
};
Source

Also in JavaScript: