How to programmatically trigger the click on a link using jQuery?
$('#your_link_id')[0].trigger('click');
is needed as jQuery returns an array and we cannot trigger click on multiple eventlinks. You have to target only a single element