<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.blogger.com/rsd.g?blogID=7487871339000666216" />
How can I get the href attribute of this link tag without using any javascript library?
Right now I'm using the code below to achieve this but I want to know whether there is a simpler solution.
var links = document.getElementsByTagName("link");
for (i in links){
var title = links[i].getAttribute("title");
if ( title == "RSD"){
var href = links[i].getAttribute("href");
break;
}
}
for-initeration is not appropriate, andlinks' does *not* refer to anArray` instance. It refers to an object implementing theNodeListinterface, maybe even theHTMLCollectioninterface in some host environments (browsers). However, it would not be appropriate with anArrayinstance as well (see my answer). – PointedEars Feb 25 at 8:00NodeListwill not behave like anArrayinstance (please don't simply say "array", that is the concept instead); it is a host object instead. For example,NodeLists are live,Arrayinstances are not.NodeLists have methods thatArrayinstances are lacking. 2. AISB,for-inis inappropriate with both object types. – PointedEars Feb 25 at 22:47