<html>
<body>
Checkbox: <input type="checkbox" id="myCheck">
<p>Click the "Try it" button to find out whether the checkbox is checked, or not.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myCheck").checked;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_checkbox_checked by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 05 Jun 2019 14:46:40 GMT -->
</html>