jQuery Tutorial plus Question:

How to programmatically trigger a click event that's being handled by jQuery?

Tweet Share WhatsApp

Answer:

We can fire or trigger any click event programmatically by using below methods.

jQuery('#YourElementID').trigger('click');
OR
$('#YourElementID').trigger('click');
OR
jQuery("#YourElementID").click();
OR
$("#YourElementID").click();

Download jQuery PDF Read All 91 jQuery Questions
Previous QuestionNext Question
Advantages of jQuery.How to scroll smothly to a div using jquery?