“jQuery Удалить фокус из всех элементов” Ответ

jQuery Удалить фокус

$("#myInputID").blur(); // Use .blur().

/*
The blur event is sent to an element when it loses focus.
Originally, this event was only applicable to form elements, such as <input>.
In recent browsers, the domain of the event has been extended to include all
element types. An element can lose focus via keyboard commands, such as the
Tab key, or by mouse clicks elsewhere on the page.
*/
Doge Amazedo

jQuery Удалить фокус из всех элементов

$(':focus').blur()
Gifted Gull

Ответы похожие на “jQuery Удалить фокус из всех элементов”

Вопросы похожие на “jQuery Удалить фокус из всех элементов”

Больше похожих ответов на “jQuery Удалить фокус из всех элементов” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования