One of the most important features of any web application is the ability to display data. On a more “close to the metal” level, displaying data means rendering elements to the screen or another output device. The World Wide Web Consortium defines rendering elements programmatically with the Document Object Model, also known as the DOM. This chapter aims to teach you how to effectively manipulate DOM without frameworks.
The Document Object Model
The Document Object Model (DOM) is how the World Wide Web ...