.focusin()


.focusin( handler )Возвращает: jQuery

Описание: Устанавливает обработчик получения фокуса самим элементом или одним из его дочерних.

This method is a shortcut for .on( "focusin", handler ) in the first two variations, and .trigger( "focusin" ) in the third.

The focusin event is sent to an element when it, or any element inside of it, gains focus. This is distinct from the focus event in that it supports detecting the focus event on parent elements (in other words, it supports event bubbling).

This event will likely be used together with the focusout event.

Дополнительные замечания:

  • As the .focusin() method is just a shorthand for .on( "focusin", handler ), detaching is possible using .off( "focusin" ).

Примеры использования