Tagged Questions
1
vote
2answers
50 views
Buttons added with Greasemonkey+jQuery appear but don't work on click
Using Greasemonkey (v.1.8) and jQuery(2.0) and Firefox(20.0) I want to add buttons to each musical piece on pages such as Through the Night.
I have tried several ways to add the buttons. They appear, ...
0
votes
1answer
40 views
How to click a “Show More” link with Greasemonkey? [closed]
When visiting a BBC episodes page, I would like "SHOW MORE" to be invoked from a Greasemonkey script.
I have tried half a dozen ways and none work. I think I am missing some fundamental.
Thanks
1
vote
1answer
56 views
“Normal” button-clicking approaches are not working in Greasemonkey script?
Here is the button on the page:
<a id="dispatchOnJobButton" class="ui-btn ui-btn-corner-all ui-shadow ui-btn-up-c" href="#" data-role="button" data-theme="c" data-disabled="false">
<span ...
0
votes
2answers
133 views
Greasemonkey script is not clicking the button
What is the problem here; it does not click?
My code:
// ==UserScript==
// @name premiumleech
// @namespace premiumleech
// @include http://generator.premiumleech.com/link/*.html
// ...
1
vote
1answer
106 views
click on button in greasemonkey
<a class="js-open-panel action-button" target="video-download" href="#">
<em><span class="icon-16x16 icon-download"></span> Download</em></a>
xpath using ...
1
vote
1answer
141 views
How do I get Greasemonkey to click on a button that only appears after a delay?
I've seen a lot of similar questions and I've tried everything I can think of to get this to work on my own.
First the relevant code (¿from the target page?):
...
1
vote
1answer
166 views
jquery click and cookies
I have a greasemonkey script to run in a specific website.
The objective is make click in a specific button,
remove the cookie (Tthe website sets the cookie on click, i have to remove the cookie ...
1
vote
1answer
77 views
How do I click an “answer” link based upon an image source?
I have a simple "Who is" game page and I want to make a simple auto-answer script with Greasemonkey. How can I make that?
Based on the sid in the image src:
<img ...
2
votes
1answer
681 views
How can my Greasemonkey script auto-reload a page, and auto-click a button?
I'm a beginner in JavaScript. I need to know if this is possible and then if so, how to do it.
I'd like to create a Greasemonkey script that will automatically reload a webpage every hour, and then ...
1
vote
1answer
179 views
How to detect clicks on specific links in page with Greasemonkey?
Ok... one of my virtual pet sites was down so I decided to tweak a Greasemonkey script for another site... the original script just pops up an alert when you find an egg so you don't click past it - I ...
1
vote
2answers
326 views
How do I click on this button with Greasemonkey?
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: ...
0
votes
2answers
259 views
setinterval() and .click() in a Greasemonkey script
I've tried to develop a simple Greasemonkey script in javascript. How can I automatically simulate a click on specific button with an interval between each click?
Here's my code:
var ...
7
votes
2answers
2k views
How can I detect visited and unvisited links on a page?
My aim is to detect the unvisited links on a webpage and then create a greasemonkey script to click on those links. By unvisited links here I mean the links which are not opened by me. Since I can see ...
0
votes
2answers
466 views
How to automatically open a new/unvisited link on a webpage?
I am using firefox and continuously refreshing a webpage to check if a new link/post has came on the webpage. Currently I am using reload every and refreshing a webpage and when a new link comes I ...
0
votes
1answer
488 views
Button click help (Greasemonkey)
Please help me, I need to click these 2 buttons links:
<li class="booster" id="b_10">
<img alt="" src="http://www.erepublik.com/images/parts/pixel.gif" class="overlay" />
<div ...
0
votes
1answer
198 views
Is there a way to click a link only once using greasemonkey?
Is there a way to click a link only once using Greasemonkey?
Script is (e.g.):
var evt = document.createEvent ("HTMLEvents");
evt.initEvent ("click", true, true);
...
1
vote
1answer
2k views
How do you make Greasemonkey Click a link that has specified text?
Alright basically i want to click a link that changes but always has the same text name.
Heres an example of what the code might be
<a href="unlock.php?confirm=MD5hashere">Click Here</a>
...
0
votes
2answers
4k views
JQuery automatic click after 4 sec
I'm not an programmer, but I know something. I need very simple script for GreaseMonkey (JQuery). Script which after 4 sec click on link (http://ptzplace.eu/login.php here is it). I need script which ...
0
votes
1answer
314 views
Click in a image/function with javascript on Greasemonkey?
How can I click in a image/function with javascript?
Something like:
document.getElementById("check-in-banner").click();
the source of the part is
<a id="check-in-button" href="#">
Thank ...

