Gareth Reakes wrote: > Hello, > > You can not append an attribute using appendChild(). It will cause a > HIERARCHY_REQUEST_ERR. You should use setAttributeNode(). This applys only > to element nodes so you may have to static_cast first. Or simply do a node.setAttribute("name", "value") and let the implementation deal with creating the attribute node for you. setAttribute() will create a new attribute if the attribute you're setting doesn't exist and in at least some implementations using setAttribute() is even more efficient than creating the attribute and setting the attribute node on an element. > > > Gareth > > >> if(attributes) >> { >> node.appendChild(myAttr); //add attribute to the node >> } >> >> .... >> >> Thanks in advance >> Mario >> >> -- jstReceived on Tuesday, 28 November 2000 04:56:30 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Tuesday, 27 October 2009 08:24:52 GMT