>>>> Attributes?  Or properties?  That is, GetAttribute("value"), or GetValue()?

for every element in the DOM, i parse the attributes as follows:

nsIDOMNamedNodeMap attributes = node.getAttributes();
long len = attributes.getLength();
for (int i = 0; i < len; i++)
{
         nsIDOMNode attr = attributes.item(i);
         String attrName = attr.getNodeName();
         String attrValue = attr.getNodeValue();
}
_______________________________________________
dev-embedding mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-embedding

Reply via email to