0% found this document useful (0 votes)
35 views2 pages

JavaScript HTML DOM Explained

The document explains the HTML DOM (Document Object Model) and its role in allowing JavaScript to access and manipulate HTML elements on a web page. It outlines the capabilities of JavaScript with the HTML DOM, including changing content, styles, and responding to events. The document also describes the W3C standard for the DOM, which includes the Core DOM, XML DOM, and HTML DOM models.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views2 pages

JavaScript HTML DOM Explained

The document explains the HTML DOM (Document Object Model) and its role in allowing JavaScript to access and manipulate HTML elements on a web page. It outlines the capabilities of JavaScript with the HTML DOM, including changing content, styles, and responding to events. The document also describes the W3C standard for the DOM, which includes the Core DOM, XML DOM, and HTML DOM models.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

13/10/2025, 14:53 JavaScript HTML DOM

 Tutorials  References  Exercises  Upgrade Get Certified Sign In

HTML
 CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO [Link] C C++ C# BOOTSTRA

JavaScript HTML DOM


❮ Previous Next ❯

With the HTML DOM, JavaScript can access and change all the elements of an HTML document.

The HTML DOM (Document Object Model)


When a web page is loaded, the browser creates a Document Object Model of the page.

The HTML DOM model is constructed as a tree of Objects:

The HTML DOM Tree of Objects

With the object model, JavaScript gets all the power it needs to create dynamic HTML:

JavaScript can change all the HTML elements in the page


JavaScript can change all the HTML attributes in the page
JavaScript can change all the CSS styles in the page
JavaScript can remove existing HTML elements and attributes
JavaScript can add new HTML elements and attributes
JavaScript can react to all existing HTML events in the page
JavaScript can create new HTML events in the page

What You Will Learn


In the next chapters of this tutorial you will learn:

[Link] 1/4
13/10/2025, 14:53 JavaScript HTML DOM

How to change the content of HTML elements


 Tutorials  References  Exercises 
How to change the style (CSS) of HTML elements
Upgrade Get Certified Sign In

How to react to HTML DOM events


HTML
 CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO [Link] C C++ C# BOOTSTRA
How to add and delete HTML elements

ADVERTISEMENT

REMOVE ADS

What is the DOM?


The DOM is a W3C (World Wide Web Consortium) standard.

The DOM defines a standard for accessing documents:

"The W3C Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to
dynamically access and update the content, structure, and style of a document."

The W3C DOM standard is separated into 3 different parts:

Core DOM - standard model for all document types


XML DOM - standard model for XML documents
HTML DOM - standard model for HTML documents

What is the HTML DOM?


The HTML DOM is a standard object model and programming interface for HTML. It defines:

The HTML elements as objects


The properties of all HTML elements
The methods to access all HTML elements
The events for all HTML elements

In other words: The HTML DOM is a standard for how to get, change, add, or delete HTML elements.

?
Exercise
What does DOM stand for?

[Link] 2/4

You might also like