How to programmatically emulate the click on a link using jquery?
$('#your_link_id').click()
See the excellent jquery docs for more information
You can use trigger:
$('#your_link_id').trigger('click');