Bind an event handler to the "blur" JavaScript event on an element.
Answer options
A
True
B
False
Correct answer: True
Explanation
jQuery's .blur() method attaches an event handler for the blur event, which fires when an element (typically a form field) loses focus. Commonly used for input validation.