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?
|
2
|
|||
|
|
|
From your answer:
is not a valid selector. to get the first a on the page use:
or
So for the selector in your answer:
write
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.
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. EDIT
however I think the other method is more readible. EDIT Okay, from you next answer/question thingie
|
||||||||
|
|
|
$(-some object-).trigger('click') should do the trick. |
||||
|
|
|
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- }) |
|||
|
|
|
|
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'); |
||||||||||
|
|
|
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 :( |
||||
|
|
|
Try it this way:
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. |
||||
|
|
|
This will work in Internet Explorer if thats your only target, otherwise you're stucked with the document.location solution. |
||
|
|
|
|
This works successfully:
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! |
|||
|
|
