Javascript debugger
Website design
↑
DOMNode {
bool add_namespace(string uri,
string prefix);
}
This method adds a namespace declaration to a node.
This method is not part of the DOM specification.
You can set the namespace URI and prefix of a DOMElement
or a DOMAttr
at creation time by using
DOMDocument->createElementNS() or
DOMDocument->createAttributeNS().
Remember the an attribute does not inherit its namespace from the element it is attached to.