W3C Core Reference. Part of the Attr Interface
Returns a string containing the value of the attribute.
string = element.attributes[x].value
None
// get NamedNodeMap of element's attributes
map = document.getElementById("one").attributes;
// use NamedNodeMap methods or attributes to access
for(i = 0; i < map.length; i++)
{
// place name and value in array
attrdata[i] = map[i].name+" = "+map[i].value;
}
The above example gets a reference to an existing element with id="one", and obtains a list of its attributes in map. The 'for' loop then places the attribute names and their values in the array attrdata.
Problems, comments, suggestions, corrections (including broken links) or something to add? Please take the time from a busy life to 'mail us' (at top of screen), the webmaster (below) or info-support at zytrax. You will have a warm inner glow for the rest of the day.
Tech Stuff
If you are happy it's OK - but your browser is giving a less than optimal experience on our site. You could, at no charge, upgrade to a W3C standards compliant browser such as Firefox
|
Copyright © 1994 - 2025 ZyTrax, Inc. All rights reserved. Legal and Privacy |
site by zytrax hosted by javapipe.com |
web-master at zytrax Page modified: January 20 2022. |