I'm attempting to update some text indicating whether or not a checkbox is checked. The issue is that when the checkbox is checked, the textbox disappears and the text takes its place.
<form name="myForm" id="myForm">
<input type="checkbox" name="checkMe" id="checkMe" onClick="verify();" />
</form>
<script type="text/javascript">
function verify() {
document.write("Checkbox status: " + document.myForm.checkMe.checked);
}
</script>