blur()
removes focus from a control of Form
blur(name: string): void;
Parameters:
name: string
- optional, the name of a control. If the name is not specified, removes focus from the control that is currently in focus.
Example
form.blur(); // removes focus from the control that is currently in focus
form.blur("checkbox"); // removes focus from the Checkbox control
Change log:
added in v.7.2