All HTML element interfaces derive from this class. Elements that only expose the HTML core attributes are represented by the base <code> HTMLElement </code> interface. These elements are as follows:
<ulist> <item> HEAD
</item> <item> special: SUB, SUP, SPAN, BDO
</item> <item> font: TT, I, B, U, S, STRIKE, BIG, SMALL
</item> <item> phrase: EM, STRONG, DFN, CODE, SAMP, KBD, VAR, CITE, ACRONYM, ABBR
</item> <item> list: DD, DT
</item> <item> NOFRAMES, NOSCRIPT
</item> <item> ADDRESS, CENTER
</item> </ulist> Note. The <code> style </code> attribute for this interface is reserved for future usage.
| DOMString |
[const]
The element's identifier. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-id"> id attribute definition </a> in HTML 4.0.
| void |
see id
| DOMString |
[const]
The element's advisory title. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-title"> title attribute definition </a> in HTML 4.0.
| void |
see title
| DOMString |
[const]
Language code defined in RFC 1766. See the <a href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-lang"> lang attribute definition </a> in HTML 4.0.
| void |
see lang
| DOMString |
[const]
Specifies the base direction of directionally neutral text and the directionality of tables. See the <a href="http://www.w3.org/TR/REC-html40/struct/dirlang.html#adef-dir"> dir attribute definition </a> in HTML 4.0.
| void |
see dir
| DOMString |
[const]
The class attribute of the element. This attribute has been renamed due to conflicts with the "class" keyword exposed by many languages. See the <a href="http://www.w3.org/TR/REC-html40/struct/global.html#adef-class"> class attribute definition </a> in HTML 4.0.
| void |
see className
| DOMString |
[const]
The HTML code contained in this element. This function is not part of the DOM specifications as defined by the w3c.
| void |
Set the HTML content of this node.
Throws: DOMException, NO_MODIFICATION_ALLOWED_ERR:, Raised, if, there, is, the, element, does, not, allow, children.
| DOMString |
[const]
The text contained in this element. This function is not part of the DOM specifications as defined by the w3c.
| void |
Set the text content of this node.
Throws: DOMException, NO_MODIFICATION_ALLOWED_ERR:, Raised, if, there, is, the, element, does, not, allow, children.
| Generated by: ssk@tauon.ph.unimelb.EDU.AU on Wed May 23 05:55:52 2001, using kdoc 2.0a35. |