om.DomNode.setAttribute
Sets the value of a DOM node attribute.
Syntax
setAttribute(
name STRING,
value STRING )
- name is the name of the attribute.
- value is the attribute value.
Usage
The setAttribute()
method sets the value of an attribute in
the current node.
DOM node attribute names are case-sensitive.
Note: Make sure that the strings passed to the method do not contain
illegal XML characters. Illegal XML characters will be silently ignored. Illegal XML characters are
any character below space (ASCII 32), except \r (ASCII 13), \n (ASCII 10) and \t (ASCII 9).
Example
DEFINE node om.DomNode
...
CALL node.setAttribute("name", "tiger")
For a complete example, see Example 1: Creating a DOM tree.