Tagged Questions
1
vote
1answer
99 views
How to remove an HTML element in a target page with no ID's or class names, etc.?
I want to remove an element which has an XPath:
html/body/center/center/table/tbody/tr/td
I want to remove the <table> and its content. I found some answers but they all need id, class name, ...
1
vote
2answers
115 views
Using dynamic variables in xpath
I need a little help with this script:
var xpathResult = document.evaluate("(//text()[contains(., 'TEXT GOES HERE')])[1]", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null);
var ...
3
votes
1answer
111 views
XPath, in a Greasemonkey script, is not selecting right nodes on an XHTML page
I'm working on a Greasemonkey script for weibo.com. I can't pick the elements using XPath on the XHTML page.
This code fails to grab the elements I want:
function resolver(prefix) {
return ...
2
votes
2answers
102 views
cant get xpath working on javascript
im trying to do simple xpath with javascript on Grease monkey and it doesnt work for me,:
var xmlString="<body>text<table class='citizens ...
1
vote
2answers
172 views
Need help optimizing script that hides table rows
I made this Greasemonkey script:
var maxpi = 250;
var p1 = "/html/body/div/div[2]/div/div[2]/table[2]/tbody/tr[1]/td[11]";
var p2 = "/html/body/div/div[2]/div/div[2]/table[2]/tbody/tr[2]/td[11]";
..
...
0
votes
1answer
355 views
Greasemonkey: using XPath to get elements from distant XML-document
What Im trying to do with my Greasemonkey script is:
to read some distant XML document;
convert it into XML object;
and then use XPath to get the elements inside of it.
The ...
2
votes
1answer
797 views
XPath to find nodes with text + all their descendants & siblings that match certain criteria
Background:
I'm trying to improve on a Greasemonkey script I found.
The script marks prices in foreign currencies and can translate them into the currency of your choice.
The main problem:
How to ...
1
vote
1answer
124 views
Checking current location and clicking a link button every few minutes
Ive got this current situation with an auction site.
trada.net Somtimes they go offline for a few hours, with a current locatoin like: offline location, now, it basically disables all my other GM ...
0
votes
1answer
90 views
Need to Click Popup with Gm script that is not always there
i'm still having a problem clicking a popup button on an auction site,that appears only if u won an auction. This popup seems tbe a problem. Ive managed to get help partially in Need to click a bid ...
2
votes
2answers
222 views
Need to click a bid button with Grease monkey script
I'm a bit stuck. I'm trying to create an Grease Monkey script that will automatically click an pop-up that appears on an auction site. I'v got the Xpat, but i'm too in expierienced with GM to get it ...
0
votes
1answer
237 views
counting jquery script tags with xpath
I want to use a document.evaluate expression in a userscript to be able to detect the presence (or absence) of an existing jQuery library in the document head, as part of developing a jQuery wrapper ...
2
votes
3answers
249 views
xpath expression for numeric comparison
I'm writing a Greasemonkey script so can't change the source XHTML.
Given the following XHTML fragment:
<td>
<span class="entry">Gender, Age:</span> Female, 42<br>
...
0
votes
1answer
348 views
XPath is acting strange about DIV inside TD (html voodoo!!)
This is all Javascript running under Greasemonkey (FF3.6+).
I have an HTML doc as a response from an XHR, stripped down to the BODY tag and crammed into a non-displaying DIV:
var str = ...
0
votes
1answer
176 views
Grease monkey xpath help and fire bug help neededed
script:
From firebug xpath on the button is as follows:
.//*[@id='ctl00_mainContentPlaceholder_Button3']
and the script piece is:
<br>
<input ...
2
votes
1answer
662 views
(document.evaluate) -> src of image contains multiple conditions, how?
please don't hit me with the hate stick. I'm a noob. hides in corner
I'm new to Greasemonkey and its syntax, so your help is much appreciated!
I'm trying to highlight several images based on words ...
1
vote
2answers
312 views
Merging getComputedStyle and evaluate in Greasemonkey
I need to get all the text nodes with a certain font-face in a page to an array. I tried..
textnodes = document.evaluate("//* [@style='font-family: foo;']//text()["
+ ...
1
vote
3answers
318 views
exit document.evaluate
I'm using using Greasemonkey. If the xpathExpression doesn't exist, the whole script will stop.
document.evaluate(
xpathExpression,
document,
null,
...
1
vote
1answer
596 views
XPath choking on entities in Firefox / GreaseMonkey
I am writing a fairly basic GreaseMonkey script that locates text in a specific element and then uses that text to do things later. The relevant bits of code are as follows:
In the HTML there is a ...
1
vote
3answers
708 views
Javascript / XPath error
I was experimenting around with XPath, basically I'm trying to load a HTML page using XMLHttpRequest and select an element inside it from its XPath.
Here's my code (Greasemonkey/Js):
...
1
vote
1answer
116 views
XPath expression for a phpBB forum
I'm writing a Greasemonkey script, and I wanted to change the text of a forum post on a phpBB2 forum by using XPath to select the body of the post that occurs after a certain username, but the whole ...
1
vote
3answers
188 views
xpath - limit search to node not working?
What am I doing wrong here? I am trying to limit my xpath search to a specific row in my table but my query always returns the content of the span in the first row:
var query = "//span[contains(@id, ...
0
votes
4answers
549 views
Find all <a>s to who's href points to an image with XPath 1.0
First, I can assume that all urls that end with jpeg, jpg, bmp, png or gif are images, and others aren't.
I thought of, and tried two solutions:
Matching the regular expression ...
0
votes
1answer
900 views
Updating onclick's string value with Greasemonkey
I'm trying to write a Greasemonkey script to update the onclick value of a bunch of links on a page. The HTML looks like this:
<a onclick="OpenGenericPopup('url-99.asp','popup',500,500,false)" ...
1
vote
3answers
4k views
Greasemonkey, XPath: find all links within table row
Given:
<tr>
<td><a href="http://foo.com">Keyword 1</a></td>
<td><a href="http://bar.com">Keyword 2</a></td>
<td><a ...
5
votes
4answers
3k views
XPath or querySelector?
XPath can do everything querySelector can do, and more, so when would you ever choose the latter? I haven't seen any speed benchmarks comparing the two, so right now I'm choosing based on syntax ...
2
votes
2answers
833 views
greasemonkey script that outputs all data corresponding to xpath
I would like to write a greasemonkey script that given an xpath returns all of the output of that xpath executed on the current page in a .txt file with one result per row.
How do I do this?
EDIT: ...
0
votes
3answers
918 views
Getting all nodes between the current node and another without current()?
I'm working on a Greasemonkey script which needs to operate on each node between two others. Currently, I'm getting the first node using an (increasingly-complicated) XPath expression. I have ...
1
vote
2answers
293 views
Greasemonkey: XPath returns no results for .xhtml page
When running on an xhtml page, xpath doesn't seem to return any results.
var result = document.evaluate( "//a/img", document.body, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null );
For example ...
4
votes
3answers
8k views
Reading the value of an input using XPath, then using in Greasemonkey
I'm using this XPath to get the value of a field:
//input[@type="hidden"][@name="val"]/@value
I get several results, but I only want the first. Using
//input[@type="hidden"][@name="val"]/@value[1]
...