• Triggers the blur event on the specified HTML element, causing it to lose focus.

    Parameters

    • element: HTMLElement

      The HTML element that should lose focus.

    Returns void

    See

    MDN Documentation for HTMLElement.blur()

    Example

    // Cause an input element to lose focus
    var inputElement = ix.api.dom.getHtml("<ELEMENT-GUID>");
    ix.api.dom.blur(inputElement);