returns "true" if an item exists
name | string | the name of an item |
value | string | the value of an item (for a radio button) |
boolean | the item exists/doesn't exist |
//for radio buttons
var isExist = myForm.isItem(name, value);
//for other items
var isExist = myForm.isItem(name);
Back to top