34,333
edits
Changes
→JavaScript Check Boxes
<pre>
if (document.orderForm.mailListBox.checked)
{
addToMailingList();
}
</pre>
You can also change the state of a Check Box by explicitly setting the ''checked'' property:
<pre>
document.orderForm.mailListBox.checked = false;
</pre>