JavaScript Roadmap

JavaScript and the DOM

@todo

1. The DOM

The Document Object Model (DOM), represents the web page (aka. document) as nodes and objects organized into a treelike structure. This way, programming languages - like JavaScript - can interact with the page.

More on: Google | Youtube

2. Interacting with the DOM

Use JavaScript to add, delete, or alter page content, control page styling, and respond to user actions.

3. Events