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?

link|improve this question

75% accept rate
6  
Have you tried element.getAttribute("href")? – IonuČ› G. Stan Oct 11 '09 at 15:06
@Ionut, why'd you not add that as an answer? – 999 Oct 11 '09 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. – IonuČ› G. Stan Oct 11 '09 at 15:10
Yeah, I spazzed out on the code. Sorry, Ionut. – wfaulk Oct 11 '09 at 15:11
feedback

2 Answers

up vote 4 down vote accepted

Try the getAttribute method instead.

link|improve this answer
Unfortunately, IE7 seems to return the fully qualified URL even with this approach. – Jørn Schou-Rode Jan 14 '10 at 21:37
feedback

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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