diff --git a/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md b/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md index d51a2ebcc..3bb9d490a 100644 --- a/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md +++ b/content/roadmaps/100-frontend/content/103-javascript/101-learn-dom-manipulation.md @@ -1,8 +1,10 @@ # DOM Manipulation -The Document Object Model (DOM) connects web pages to scripts or programming languages by representing the structure of a document—such as the HTML representing a web page—in memory. +The Document Object Model (DOM) is a programming interface built for HTML and XML documents. It represents the page that allows programs and scripts to dynamically update the document structure, content, and style. With DOM, we can easily access and manipulate tags, IDs, classes, attributes, etc. Free Content +DOM Treee +GeeksForGeeks - DOM (Document Object Model) What is the DOM? Eloquent JavaScript, 3rd Edition: The Document Object Model JavaScript HTML DOM