vimwiki

Javascript DOM

The DOM or Document Object Model is a tree-like representation of a webpage.

It allows manipulation of the webpage by a programming language.

Each elements is called a node

<div id="container">
  <div class="display"></div>
  <div class="controls"></div>
</div>

It work like a family tree.