Hi
To check the value of a checkbox, you use the the following javascript
if(document.getElementById("<id of the checkbox>").checked == true)
If this doesn't work, it may be because you are using HTMLb and you will have to generate the ID field dynamically so that you capture the correct ID of the checkbox
I hope this helps
Add a comment