URL: https://www.progressiverobot.com/jquery-click/

Have a say on what happens when users click stuff on your site:

				
					
$('<^>#my_picture<^>').click(function() {

  // Do stuff

});

				
			

Trigger a Click

click illustration for: Trigger a Click

You can also use the same method to trigger the click event on selected elements:

				
					
$('#my_picture').click();