From a44bcc589ca0e38a3dada72eed5545f8dbed7816 Mon Sep 17 00:00:00 2001 From: Angelos Chalaris Date: Tue, 17 Jul 2018 21:01:46 +0300 Subject: [PATCH] Update DOM.md --- glossary/DOM.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/glossary/DOM.md b/glossary/DOM.md index a55649e0e..e7f82e24b 100644 --- a/glossary/DOM.md +++ b/glossary/DOM.md @@ -1,3 +1,5 @@ ### DOM -The DOM (Document Object Model) is a cross-platform API that treats HTML and XML documents as a tree structure consisting of nodes. These nodes (such as elements and text nodes) are objects that can be programmatically manipulated and any visible changes made to them are reflected live in the document. In a browser, this API is available to JavaScript where DOM nodes can be manipulated to change their styles, contents, placement in the document, or interacted with through event listeners. +The DOM (Document Object Model) is a cross-platform API that treats HTML and XML documents as a tree structure consisting of nodes. +These nodes (such as elements and text nodes) are objects that can be programmatically manipulated and any visible changes made to them are reflected live in the document. +In a browser, this API is available to JavaScript where DOM nodes can be manipulated to change their styles, contents, placement in the document, or interacted with through event listeners.