DEV Community

Cover image for Brief Explanation on Document Object Model (DOM)
OTJ-vie
OTJ-vie

Posted on

Brief Explanation on Document Object Model (DOM)

This is a submission for DEV Challenge v24.03.20, One Byte Explainer: Browser API or Feature.

Explainer

Document Object Model(DOM) is a webpage data represented in objects form; the structure and content contained in it. A webpage which could have been built with HTML or XML. It is easy to use Javascript in DOM to select object attributes contained in HTML.

Additional Context

These DOM documents are represented in nodes and objects which makes it easy for other programming languages to interact with.

Top comments (0)