Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
First Name: <input type="text" id="myText" value="Mickey"><br>
<button onclick="disableTxt()">Disable Text field</button>
<button onclick="undisableTxt()">Undisable Text field</button>
<script>
function disableTxt() {
  document.getElementById("myText").disabled = true;
}
function undisableTxt() {
  document.getElementById("myText").disabled = false;
}
</script>
</body>
</html>