html element | object
Implements the document object model (DOM) representation of the html element.
![]() |
Syntax
<!DOCTYPE html> <html lang="en"> <!-- The root of the HTML document. --> <head> <title>Some Title</title> </head> <body> <h1>Header Content</h1> <p>Paragraph content.</p> </body> </html> <!-- The closing element for the HTML document. -->
DOM Information
Inheritance Hierarchy
Members
The HTMLHtmlElement object does not define any members.
Remarks
The html element's manifest attribute gives the address of the document's application cache manifest, if there is one. If the attribute is present, the attribute's value must be a valid non-empty URL.
The manifest attribute only has an effect during the early stages of document load. Changing the attribute dynamically thus has no effect (and thus, no DOM API is provided for this attribute).
See also
Show:
