I ran into the following situation and am not able to figure out the solution, i am new to javascript, and I tried to search the internet, but couldn't find a viable solution. 1) I want to get attributes of the tag queried for. For example if I have a tag as follows
<a href = "pqr/dl/"> docName </a>
how do I get the value of href? By doing
el.getElementsByTagName("a")[0].childNodes[0].nodeValue
I can get only the value of the tag, i.e., "docName" by doing this.
2) How do I query for the "img" tag? I have an image tag as follows
<img src = "/icons/alpha.gif" alt="[DIR]">
if I do
console.log(el.getElementsByTagName("img")[0].childNodes[0].nodeValue)
it is printing "null" on the console. I need the values of src and alt.
Thanks in advance
getAttributemethod, or refer to the property directly with its name. Notice, that (exceptionally)a.toString()also returns the value ofhrefattribute.