From aa2cb437f3b7602f7888fbf4178d9b26f8c95224 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Feje=C5=A1?= Date: Tue, 17 Jul 2018 10:45:19 +0200 Subject: [PATCH] add glossary/DOM --- glossary/DOM.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 glossary/DOM.md diff --git a/glossary/DOM.md b/glossary/DOM.md new file mode 100644 index 000000000..a55649e0e --- /dev/null +++ b/glossary/DOM.md @@ -0,0 +1,3 @@ +### 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.