vote up 1 vote down star

I am trying to write a GreaseMonkey script in which I want to find all of the links that are relative links. It seemed to me that the way to do that would be to match the contents of href against /^https?:///.

But I find that when I access the anchor's href attribute, it's always normalized or cooked into a form that contains "http". That is, if the HTML contains:

<a id="rel" href="/relative/link">inner</a>

accessing

document.getElementById("rel").href

returns

http://example.com/relative/link

How can I access the raw data in the href attribute?

Alternately, is there a better way to find relative links?

flag
3  
Have you tried element.getAttribute("href")? – Ionut G. Stan Oct 11 at 15:06
@Ionut, why'd you not add that as an answer? – J-P Oct 11 at 15:09
J-P, the question was a bit unclear at the beginning. At the time I posted my comment it was not clear whether he tried using the getAttribute method or just the href property. – Ionut G. Stan Oct 11 at 15:10
Yeah, I spazzed out on the code. Sorry, Ionut. – wfaulk Oct 11 at 15:11

2 Answers

vote up 3 vote down check

Try the getAttribute method instead.

link|flag
vote up 2 vote down

Typical. I figured it out myself almost immediately after posting the question.

instead of:

anchor.href

use:

anchor.getAttribute("href")

Of course, it took me longer to type in this answer than it took everyone else to answer it. (Damn, you people are fast.)

link|flag

Your Answer

Get an OpenID
or

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