+ 2
HTML course: difference between tag and element?
Hi guys, what's the difference between tag and element?
4 ответов
+ 6
tags are the speaking convenience to denote
< some tags > notation.
but all the tags are actually a DOM element
+ 5
Document object model,
All the tags in html are actually objects in a predefined object tree as shown in the link.
so by accessing the DOM objects we can perform various Operations over html page, and in that context "element" ( sometimes also called as Nodes) comes into picture.
https://www.w3schools.com/js/js_htmldom.asp
+ 1
What does DOM stand for?
+ 1
Ok thanks!