<a href="index.php?param=value" id="myLink">text link</a>
$("#myLink").click(); // doesn't work

// for use href location of link, use :
window.location.href = $("#myLink").attr("href");

// and for both : handler defined + href

$("#myLink").click();
window.location.href = $("#myLink").attr("href");

// or

if ($("#myLink").click)
    $("#myLink").click();
else
    window.location = $("#myLink").attr('href');

jquery click doesn't work on hyperlink