![]() |
|
|
+ Search |
![]()
|
May 26th, 2000 16:52
Jeff Wagner, Byron Bignell,
Check boxes can be verified if checked by the variable's checked
property.
For instance if your algorithm was:
if checkBoxVariable is checked then do task...
Your code would look something like:
if (document.Form.Variable.checked) {
// do task
// return
}
If you wanted to see if it is UNchecked then:
if (!document.Form.Variable.checked) {
// do task
// return
}