Using jQuery to programmatically click an link

Try this:

$('#myAnchor')[0].click();

It works for me.

Leave a Comment