Bind an event handler to the "focusout" event, or trigger that event on an element.
Contents:
.on( "focusout" [, eventData ], handler )Returns: jQuery
Description: Bind an event handler to the "focusout" event.
-
version added: 1.7.on( "focusout" [, eventData ], handler )
-
"focusout"
The string
"focusout". -
eventData
An object containing data that will be passed to the event handler.
-
handler
A function to execute each time the event is triggered.
-
This page describes the focusout event. For the deprecated .focusout() method, see .focusout().
The focusout event is sent to an element when it, or any element inside of it, loses focus. This is distinct from the blur event in that it supports detecting the loss of focus on descendant elements (in other words, it supports event bubbling).
This event will likely be used together with the focusin event.
Example:
Watch for a loss of focus to occur inside paragraphs and note the difference between the focusout count and the blur count. (The blur count does not change because those events do not bubble.)
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
Demo:
.trigger( "focusout" )Returns: jQuery
Description: Trigger the "focuout" event on an element.
-
version added: 1.0.trigger( "focusout" )
-
"focusout"
The string
"focusout".
-
See the description for .on( "focusout", ... ).