Get checkbox status using JavaScript sample source code:
<script type="text/javascript">
function validate() {
if (document.getElementById(CkeckBoxID).checked) {
alert("checked");
} else {
alert("You didn't check it! Let me check it for you.")
}
}
</script>