ExampleChange background color of an input field when the div element (or any child elements of it) loses focus:
Try it yourself » |
The focusout event occurs when an element loses focus.
The focusout() method specifies a function to run when a focusout event occurs on any child element of the selected elements.
Unlike the blur() method, the focusout() method triggers if any child element loses focus.
$(selector).focusout(function) |
Parameter | Description |
---|---|
function | Optional. Specifies the function to run when the focusout event occurs |