Categories: jQuery

jQuery trigger() method

Share

jQuery trigger() method triggers the default behavior of a specified event for a selected elements.

Although the .trigger() simulates an event activation by completing with a synthesized event object, that does not perfectly replicate a naturally-occurring event.

Suppose you are trying to trigger an event on the anchor. So in this case you can call it by:

$(document).ready(function(){
$("a").trigger("click");
});

For a multiple anchor you can click the last anchor using:

$('.menu a').last().trigger('click');

The difference between trigger() and triggerHandler() method is that triggerHandler() does not trigger the default behavior of the event.

Read Also: Why use jQuery on() instead of click()

There are four differences between .trigger() and .triggerHandler():

  1. In jQuery object, .triggerHandler() only triggers the event on the first element.
  2. .triggerHandler() cannot be chained and this returns the value which is returned by the last handler, not a jQuery object.
  3. .triggerHandler() will not cause the default behavior of the event.
  4. Events triggered by .triggerHandler(), will not bubble up the DOM hierarchy. Handlers on the single element will fire only.

Do not use .trigger() for simply executing specific functions.

When you are using this method, you should not use simply for calling a function that was bound as a click handler. But, you should store the function you need to call in a variable, passing the variable name when you do your binding also. Then, you can call the function itself whenever you want, without the need for .trigger().

Recent Posts

Overview of Reputation, Services, and Features of IplWin

IplWin stands as a reliable and enthralling platform for Indian punters, offering a captivating blend…

3 days ago

Blogging Brilliance: Driving Traffic and Engagement with Quality Content

Introduction In today's online age, consumers are constantly bombarded with information. They crave valuable content…

3 days ago

How Assisted Living Gives Seniors More Freedom

In today’s rapidly aging society, finding a living situation that provides older adults with both…

3 days ago

Should you go for a Refurbished Mac?

If you wish to purchase a Mac, then it is strongly suggested to consider purchasing…

3 days ago

How Many Types of Bits are Used in Drilling Operations?

Oil drilling is a complex process that involves several components, including the drilling bit. The…

4 days ago

Best Watches to Match Your Business Look

Watches can be more than a fashion. They can be a symbol, especially in the…

4 days ago