HTML DOM
HTML DOM
The DOM is an interface between scripting languages and a web page’s structure. The browser creates a Document Object Model or DOM for each of the webpage it renders. The DOM allows scripting languages to access and modify a web page. With the help of DOM, JavaScript gets the ability to create dynamic HTML.
Accessing HTML attributes in DOM
The
DOM nodes of type Element allow access to the same attributes available to HTML elements. For instance, for the given HTML element, the id
attribute will be accessible through the DOM.
Join the conversation