Input Number readOnly Property - Find out if a number field is read-only or not: - Javascript DOM HTML Element

Javascript examples for DOM HTML Element:Input Number

Description

Input Number readOnly Property - Find out if a number field is read-only or not:

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
<body>

<input type="number" id="myNumber" value="2" readonly>

<button onclick="myFunction()">Test</button>

<p id="demo"></p>

<script>
function myFunction() {//w  w  w  .  j a  v  a2  s .c o  m
    var x = document.getElementById("myNumber").readOnly;
    document.getElementById("demo").innerHTML = x;
}
</script>

</body>
</html>

Related Tutorials