class DOM.HTMLElement |
|
|
All HTML element interfaces derive from this class. Elements that only expose the HTML core attributes are represented by the base HTMLElement interface. These elements are as follows:
Note: The style attribute for this interface is reserved for future usage.
|
|
|
|
|
|
|
Retrieves a collection of all nodes that descend from this node. IE-specific extension. |
|
|
Retrieves a collection of nodes that are direct descendants of this node. IE-specific extension. |
|
The class attribute of the element. This attribute has been renamed due to conflicts with the "class" keyword exposed by many languages. See the class attribute definition in HTML 4.0.
|
|
Specifies the base direction of directionally neutral text and the directionality of tables. See the dir attribute definition in HTML 4.0.
|
|
The element's identifier. See the id attribute definition in HTML 4.0.
|
|
The HTML code contained in this element. This function is not part of the DOM specifications as defined by the w3c. |
|
The text contained in this element. This function is not part of the DOM specifications as defined by the w3c. |
|
Language code defined in RFC 1766. See the lang attribute definition in HTML 4.0.
|
|
|
see className |
|
see dir |
|
see id |
|
Set the HTML content of this node. DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if there is the element does not allow children. |
|
Set the text content of this node. DOMException NO_MODIFICATION_ALLOWED_ERR: Raised if there is the element does not allow children. |
|
see lang |
|
see title |
|
The element's advisory title. See the title attribute definition in HTML 4.0.
|