next up previous
Next: JavaScript Up: Programming on the Client Previous: Some More Definitions:Dynamic HTML

The Document Object Model

DOM:

DOM of an HTML Document

The DOM model of an HTML document is a hierarchical structure which might reasonably be represented as a tree.

The relationship between some HTML code and the DOM

<html>
<head>
   <title>TITLE OF PAGE</title>
</head>
<body>
  <p>Some text...</p>
  <ul>
    <li>First
    <li>Second
  </ul>
</body>
</html>


Figure: DOM Example

The DOM models, but does not implement:



Dave Marshall
9/28/2001