+ 1
How best can you explain DOM
Html
3 ответов
+ 2
You can refer to this: https://www.sololearn.com/learn/JavaScript/2752/
0
DOM stands for Document Object Model. Dom basically allows your program to add or remove or change the content or style or structure of your HTML document. Using DOM, you can add event handler to a element, for eg. On click of a button you want some line of code to be executed then you can add event handler to that button.
It is used when you want your webpage to be dynamic.
0
Thanks