10 lines
471 B
Markdown
10 lines
471 B
Markdown
|
|
||
|
### DOM
|
||
|
DOM stands for Document Object Model. It represents the content of xml as a tree structure.
|
||
|
![[Pasted image 20230901131941.png]]
|
||
|
It can easily read, access, update the contents of the document & it is a programming interface (API). It is an object-oriented representation of the web page.
|
||
|
|
||
|
All XML DOMs can be accessed by any scripting language like Javascript.
|
||
|
|
||
|
Every web browser uses some document object model to make web pages accessible via JavaScript.
|