I'm a total newbie with JS, and I'm trying to click on this button:
<a class="simplebutton" href="javascript:void(0);">find</a>
The XPath of this button is: /html/body/div[5]/div/span[2]/a
, and a snapshot of the target page can be seen at this Fiddle.
This is what I've tried, but it doesn't work. (I'm using the function getElementsByClassName
which I got from /):
document.getElementsByClassName('simplebutton').submit();
I'm a total newbie with JS, and I'm trying to click on this button:
<a class="simplebutton" href="javascript:void(0);">find</a>
The XPath of this button is: /html/body/div[5]/div/span[2]/a
, and a snapshot of the target page can be seen at this Fiddle.
This is what I've tried, but it doesn't work. (I'm using the function getElementsByClassName
which I got from http://code.google./p/getelementsbyclassname/):
document.getElementsByClassName('simplebutton').submit();
Share
Improve this question
edited Sep 4, 2012 at 5:03
Brock Adams
93.7k23 gold badges241 silver badges305 bronze badges
asked Sep 3, 2012 at 18:42
GiorgioGiorgio
1,6135 gold badges29 silver badges53 bronze badges
2 Answers
Reset to default 6Here is a plete script that does that. It uses jQuery for the :contains() selector.
Update: Modified script to account for reported AJAX.
// ==UserScript==
// @name _Click on a specific link
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @require http://ajax.googleapis./ajax/libs/jquery/1.7.2/jquery.min.js
// @require https://gist.github./raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a major design change
introduced in GM 1.0.
It restores the sandbox.
*/
//--- Note that contains() is CASE-SENSITIVE.
waitForKeyElements ("a.simplebutton:contains('follow')", clickOnFollowButton);
function clickOnFollowButton (jNode) {
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
}
Note: in some cases the contains()
term can trigger falsely. For example, if there is an <a class="simplebutton">unfollow</a>
button.
Here's one way to prevent false clicks. Modify the clickOnFollowButton
function like so:
function clickOnFollowButton (jNode) {
if ( ! /^\s*follow\s*$/i.test (jNode.text() ) ) {
/*--- If the node contains anything but "follow" (surrounded by
optional whitespace), don't click it.
*/
return false;
}
var clickEvent = document.createEvent ('MouseEvents');
clickEvent.initEvent ('click', true, true);
jNode[0].dispatchEvent (clickEvent);
}
Several things:
getElementsByClassName()
returns a list or "collection" of elements. You can't just.submit()
its result like that..submit()
is for single elements.Since this is a link
.submit()
won't work..click()
will often work, but often not -- when a link is empowered by an event listener (which must be the case for this question).The
clickEvent
code, given above, works in almost all cases.The page code you gave does not have any link, with
class="simplebutton"
and text containingfind
!What Browser are you using? Which Greasemonkey version? And what OS?
Find and use an appropriate javascript reference and an appropriate DOM reference. The reference listed in the question is for a library that is not standard and not included in your script (most likely).
- The MDN JavaScript Reference is the most up-to-date and the most applicable for Greasemonkey (a Firefox extension) applications.
- Likewise, the MDN Document Object Model (DOM) Reference.
Use the CSS path, its much easier than XPATH, for this kind of thing. Firebug will show you the CSS path for a given element.
jQuery uses CSS selectors/paths, as doesdocument.querySelector()
(a non jQuery approach).
You need to use the method click
rather than submit
. You can use submit
when you want to submit a form.
getElementsByClassName
also returns an array of elements, you need to retrieve the one you want and then call click
on it.
document.getElementsByClassName('simplebutton')[0].click();
http://jsfiddle/kLDde/