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