checks a checkbox or a radio button
name | string | the name of an item |
value | string | the value of an item (for a radio button) |
//for a radio button
myForm.checkItem(name,value);
//for other items
myForm.checkItem(name);
Back to top