<html>
<body>
Address:<br>
<textarea id="myTextarea">
342 Alvin Road
Ducksburg</textarea>
<p>Click the button to disable the text area.</p>
<button onclick="myFunction()">Disable Textarea</button>
<script>
function myFunction() {
document.getElementById("myTextarea").disabled = true;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_textarea_disabled2 by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:50 GMT -->
</html>