vote up 7 vote down star
2

I'm trying to click on a link using jquery. There only appears to be a click event that replicates "onclick" (i.e user input). Is it possible to use jquery to actually click a link?

flag

29% accept rate
Do you mean to programmatically emulate the click on a link? – kgiannakakis Dec 5 '08 at 13:25

8 Answers

vote up 10 vote down check

From your answer:

$("a[0]")

is not a valid selector. to get the first a on the page use:

$("a:first")

or

$("a").eq(0).

So for the selector in your answer:

$("table[1]/tr[1]/td[1]/a").trigger('click');

write

$("table").eq(1).children("tr").eq(1).children('td').eq(1).children('a').click();

Note how this will click all the links in the second table cell of the second table row in the second table on your page.
If you use this method to redirect the page to the href of the a the following method is slightly nicer:

document.location = $("table").eq(1).children("tr").eq(1).children('td').eq(1).children('a').attr('href');

Note how this will set the document location to the href of the first a found in the second table cell of the second table row found in the second table on the page.
If you want to match the first elements use eq(0) instead of eq(1).

EDIT
If you really want to do this 1337-haxxor

$("table:eq(1) > tr:eq(1) > td:eq(1) > a").click();

however I think the other method is more readible.

EDIT

Okay, from you next answer/question thingie
How about not actually clicking on the link but just setting the document.location string to it:

document.location = $("table").eq(0).children("tr").eq(0).children('td').eq(0).children('a').eq(0).attr('href');
link|flag
2  
Thanks Pim. I was trying to replicate user behavior, but that is a good workaround. Many thanks. – jedd Dec 8 '08 at 17:34
If this is the answer your going to use you should accept it. – Pim Jager Dec 8 '08 at 17:41
Changing "document.location" has just one flaw: it breaks the back button... – BlaM Dec 17 '08 at 17:33
vote up 5 vote down

$(-some object-).trigger('click') should do the trick.

link|flag
Documentation and code sample is here docs.jquery.com/Events/trigger – Alexander Prokofyev Dec 5 '08 at 13:36
Works, but you might as well just do $(object).click() – TM Dec 8 '08 at 16:49
vote up 8 vote down

I prefer $(-some object-).click() for readability

If you pass the click() method a function, it behaves like an onClick event binding:

i.e. $(-some object-).click(function() { -do stuff- })

link|flag
vote up 0 vote down

Thanks Kamel. That appears to be the way to go. Still doesn't appear to work.

This is javascript code that works :

window.document.getElementsByTagName("table")[0].rows[0].cells[1].children[0].click();

and this is jquery equivalent (that doesn't work) :

$("table[1]/tr[1]/td[1]/a").trigger('click');

link|flag
This article suggests you can not use trigger : groups.google.com/group/jquery-dev/… – jedd Dec 5 '08 at 14:07
It will trigger any custom events applied. If you just want to load the page in the link you can just grab it's href rather than trying to 'click' it. Check your selector is correct, that doesn't look valid to me. – Simon Dec 5 '08 at 14:10
I don't think there is a problem with the selector. If I replace it with : $("a[0]").trigger('click'); still doesn't work. I want to replicate a users behavior, so don't want to use href. – jedd Dec 5 '08 at 14:20
If you check docs.jquery.com/Selectors you'll see that array access isn't supported but :nth-child( index ) is and that > is used to select a child, not /. You can check that your selection has worked by checking the $(-selection-).length property. – Simon Dec 5 '08 at 17:07
Thanks, Simon. I was looking at an old version of the API (docs.jquery.com/DOM/Traversing/Selectors). I wanted to use XPath as a selector, looks like is no longer supported. That's not good :( – jedd Dec 8 '08 at 11:03
show 1 more comment
vote up 0 vote down

This is still not working!!

The xpath plugin is not very good. Very limited xpath support.

I have my expression corrrect now :

alert( $("table tr:eq(0) td:eq(0) a:eq(0)").length); *which equals one *

but when I try to click on the link :

$("table tr:eq(0) td:eq(0) a:eq(0)").trigger('click');

no joy :(

link|flag
Maybe clicking on the link is not something allowed, see my updated answer. – Pim Jager Dec 8 '08 at 16:50
Pim, What do you mean by not allowed (Not implemented in jquery)? You example is replicating 'onclick' event of javascript. I want to replicate 'click' (See original post). Perhaps I can use the jquery object and the javascript click method. – jedd Dec 8 '08 at 16:54
vote up 0 vote down

Try it this way:

$("table:first").find("tr:first").find("td:first").find("a:first").click();

That will trigger the onclick event of the the first a in the first cell of the first row in the first table...and its very readable in itself.

link|flag
I don't want to trigger the onclick event!!!!! I want to programtically click on the object!!! Javascript equivalent : window.document.getElementsByTagName("table")[0].rows[0].cells[1].children[0].click(); – jedd Dec 8 '08 at 17:02
"programtically click on the object" what does that mean if not trigger the onclick event of the retrieved element ? you want to assign an onclick function, or ? – Andreas Grech Dec 8 '08 at 20:37
vote up 1 vote down
$("table:first").find("tr:first").find("td:first").find("a:first")[0].click();

This will work in Internet Explorer if thats your only target, otherwise you're stucked with the document.location solution.

link|flag
vote up 0 vote down

This works successfully:

    $(document).ready(function() {
        $("#horizontalSlideButton").trigger('click');
    });

Where horizontalSlideButton is the ID of the link you want to trigger the click event for.

As soon as the DOM is loaded, the contents of $(document).ready(function() {} are loaded.

Please mark if this helps!

link|flag

Your Answer

Get an OpenID
or

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