What is meant by dom in JavaScript explain practically | Sololearn: Learn to code for FREE!
¡Nuevo curso! ¡Todo programador debería aprender IA Generativa!
Prueba una lección gratuita
0

What is meant by dom in JavaScript explain practically

28th Dec 2017, 3:00 PM
Sureshkumar
Sureshkumar - avatar
6 Respuestas
0
Thanks Thex.But whether all the elements will present in dom and if so those elements Wil get loaded into the page when the events get triggered?
28th Dec 2017, 3:24 PM
Sureshkumar
Sureshkumar - avatar
0
It's a way to describe the structure of a XML/HTML document. DOM describes the hierarchical structure defined by tags in such document types. Elements can have children and/or parents. The mapping of the tag hierarchy is done in a tree structure and called DOM. It's a object based model who describes this paradigm and represents it. This is a HTML document which may be represented in a DOM: <html> <head> </head> <body> </bod> </html> parent: html, children: head, body
28th Dec 2017, 3:24 PM
thex
thex - avatar
0
In the case of Javascript/HTML all tags which are part of the loaded site are also part of the DOM. If you modify the DOM and add or remove tags through JS the DOM gets modified. But I'm not sure if I understand your question correctly.
28th Dec 2017, 3:27 PM
thex
thex - avatar
0
Where does the dom stores the elements?
28th Dec 2017, 3:32 PM
Sureshkumar
Sureshkumar - avatar
0
yup got it...thanks thex for your explanation...
28th Dec 2017, 3:38 PM
Sureshkumar
Sureshkumar - avatar
0
http://taligarsiel.com/Projects/howbrowserswork1.htm https://eloquentjavascript.net/13_dom.html it's stored by the browser and accessed by JS JS builds up a object structure based on the DOM structure however see the links for a more detailed technical description
28th Dec 2017, 3:39 PM
thex
thex - avatar