<html>
<body>
Name: <input type="text" id="myText">
<p>Click the button to find out if the text field is disabled.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myText").disabled;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
</html>