Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How could one trigger the default action/event of a HTML link (anchor element)? That is to use JavaScript/jQuery to "click" an existing HTML link, as if the user has clicked it.

Just using .click() does not seem to work.

$('#alink').click();
// the nothing happening

For this HTML:

<a id="alink" href="http://google.com" target="_blank">a link</a>

Example fiddle: http://jsfiddle.net/dCfD8/

I'd rather not create a new window in JavaScript (and take care of whatever else needs to be handled when a link is clicked).

share|improve this question
1  
See this: stackoverflow.com/questions/1694595/… – Digital Plane Aug 25 '11 at 7:02
@Digital Plane, thanks, didn't see that one before. Altho it it would be interesting to know if there are any changes on the matter, or it the answer "it can't be done" still applies even for the latest browsers (eg Chrome 13+). – Qtax Aug 25 '11 at 7:13

3 Answers

up vote 2 down vote accepted

You can trigger the click event using a simple trigger method in jQuery.

$('#alink').trigger('click');

Beware though, that even in the event gets fired, the browser will not follow the link href. The only way to follow the href is to actually click it with the mouse yourself.

As far as I know, there is no way to force a link to behave as if it were clicked. You have to change the document location or something like that to actually navigate between pages.

share|improve this answer
Accepted for "there is no way to force a link to behave as if it were clicked", which stackoverflow.com/questions/1694595/… also states. – Qtax Aug 26 '11 at 7:54

Expanding on Fabio Cicerchia's comment to his own post: You can use window.open:

var link = $('#alink');
var target = link.attr("target");
window.open(link.attr("href"), target ? target : "_self");
share|improve this answer
+1. Seems like that could work. But I'm worried that (default) popup handlers/blockers could block that, while they would affect a normal user clicking a link. – Qtax Aug 25 '11 at 19:40
Yes, actually most popup-blockers will block this, if it's not triggered by a user interaction. You coudl combine it with doument.location=... in the cases where the target is not set. Maybe you should explain the background, why you need to do this. Maybe that way alternatives could be found. – RoToRa Aug 26 '11 at 7:42

try this:

$('#alink').trigger('click');
share|improve this answer
Does not work (in the fiddle at least). – Qtax Aug 25 '11 at 6:58
1  
this invoke only the jQuery events associated to click, if you want "emulate" the user click on an anchor to redirect to another url you can do this: document.location = $('#alink').attr('href'); – Fabio Cicerchia Aug 25 '11 at 7:00
Would not work with target="_blank", or any other special link attributes. – Qtax Aug 25 '11 at 7:06
1  
The OP's .click() is just a shortcut version of .trigger('click'). – nnnnnn Aug 25 '11 at 7:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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