DOM ?

Girija Viswanathan
2 min readDec 13, 2020

This blog gives a basic idea about DOM and events.

The Document Object Model (DOM) is the data representation of the objects that comprise the structure and content of a document on the web.

The Document Object Model (DOM) is a programming interface for HTML and XML documents. It represents the page so that programs can change the document structure, style, and content. The DOM represents the document as nodes and objects. That way, programming languages can connect to the page.

The DOM is an object-oriented representation of the web page, which can be modified with…

--

--