.triggerHandler( eventType [, extraParameters ] )Returns: Object
Description: Execute all handlers attached to an element for an event.
-
version added: 1.2.triggerHandler( eventType [, extraParameters ] )
-
eventTypeType: StringA string containing a JavaScript event type, such as
click
orsubmit
. -
extraParametersType: Array or PlainObjectAdditional parameters to pass along to the event handler.
-
-
version added: 1.3.triggerHandler( event [, extraParameters ] )
-
eventType: EventA
jQuery.Event
object. -
extraParametersType: Array or PlainObjectAdditional parameters to pass along to the event handler.
-
.triggerHandler( eventType )
executes all handlers bound with jQuery for the event type. It will also execute any method called on{eventType}()
found on the element. The behavior of this method is similar to .trigger()
, with the following exceptions:
- The
.triggerHandler( "event" )
method will not call.event()
on the element it is triggered on. This means.triggerHandler( "submit" )
on a form will not call.submit()
on the form. - While
.trigger()
will operate on all elements matched by the jQuery object,.triggerHandler()
only affects the first matched element. - Events triggered with
.triggerHandler()
do not bubble up the DOM hierarchy; if they are not handled by the target element directly, they do nothing. - Instead of returning the jQuery object (to allow chaining),
.triggerHandler()
returns whatever value was returned by the last handler it caused to be executed. If no handlers are triggered, it returnsundefined
For more information on this method, see the discussion for .trigger()
.
Example:
If you called .triggerHandler() on a focus event - the browser's default focus action would not be triggered, only the event handlers bound to the focus event.
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
|
|