Triggers the blur event on the specified HTML element, causing it to lose focus.
The HTML element that should lose focus.
MDN Documentation for HTMLElement.blur()
// Cause an input element to lose focusvar inputElement = ix.api.dom.getHtml("<ELEMENT-GUID>");ix.api.dom.blur(inputElement); Copy
// Cause an input element to lose focusvar inputElement = ix.api.dom.getHtml("<ELEMENT-GUID>");ix.api.dom.blur(inputElement);
Triggers the blur event on the specified HTML element, causing it to lose focus.