tags:

views:

68

answers:

2

How to programmatically emulate the click on a link using jquery?

+7  A: 
$('#your_link_id').click()

See the excellent jquery docs for more information

Thomas
+2  A: 

You can use trigger:

$('#your_link_id').trigger('click');
nc3b