What I want to do is issue a click event, preferably with jQuery, on an anchor element, causing the browser to follow that link. I know that my anchor selectors are correct, as they are returning 1 from .length.

Here's what I've tried:

$('#awesomeLink').click();

But it won't follow the link.

How am I doing it wrong?

Thanks!!

link|improve this question

feedback

4 Answers

up vote 2 down vote accepted

Why not just parse the url and send the user to that link location?

var url = $('#awesomeLink').attr('href');
window.location.href = url;
link|improve this answer
feedback

Try $('#awesomeLink').trigger("click");

link|improve this answer
Maybe I didn't read enough. I thought the question was how to trigger the even. Navigating to the link without triggering the event, however, would be Tejs's recipe spot on. – Lance May May 17 '10 at 17:57
feedback

Instead of trying to click the link directly, just tell the browser to load a different page:

window.location = "my_link's_URL";

This question is similar to how-do-i-automatically-click-a-link-with-javascript.

link|improve this answer
feedback

If you are just wanting to change the browser location try:

window.location.href = $('#awesomeLink').attr('href');

Otherwise if you are needing a bit more, then this question might help (as might the other questions about native clicking).

link|improve this answer
Apparently I type very slowly. – Blair McMillan May 17 '10 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.