Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
DOM Intro and HTML DOM Document Object | DOM and HTML Manipulation
HTML & JavaScript Interactivity for Beginners
course content

Contenido del Curso

HTML & JavaScript Interactivity for Beginners

HTML & JavaScript Interactivity for Beginners

1. DOM and HTML Manipulation
2. DOM Event Handling and Forms
3. JavaScript HTML5 APIs
4. Beginner Projects with HTML + JavaScript

DOM Intro and HTML DOM Document Object

What is DOM?

As you already know, a web page is a collection of HTML elements. So when it loads in a web browser, it creates a graphical representation of all the HTML elements in the form of a tree called the DOM(Document Object Model). Each HTML element in the tree represents an object.

Let's take a look at the DOM with a coding example.

html

index

css

index

js

index

copy

The browser represents the above code in the following form:

Now you know what DOM is. Next is the time to dive into the uses of DOM.

What are the uses of DOM?

HTML elements are static, which implies that you can't make any changes to them live. However, websites these days are seldom static and instead are dynamic.

Let's say, for instance, you want to hide a particular paragraph with a click of a button and change the color of all the anchor links on the page load. Both these instances are possible by manipulating the DOM with JavaScript.

For now, let's look at what you can do with DOM by using JavaScript:

  • Change the attributes and styles of an HTML page;
  • Add new HTML elements by responding to events for an HTML element;
  • Delete HTML elements by responding to events for an HTML element;
  • Add new styles and attributes to an HTML element.

Next, you'll discover how all these manipulations are possible with JavaScript.

How can you access the DOM with JavaScript?

Think of all the HTML elements that you saw above as objects.

Then think of the root of these objects as the document object, which houses all the objects, the web page.

So to access any DOM element using JavaScript, you need to do so via the document object methods, which you'll find out next.

Methods

Here are the primary methods for now:

  • getElementByID(id) => gets the HTML element by its id attribute. Here the ID is passed as a parameter;
  • getElementsByTagName(tag_name) => gets the HTML elements by tag name as specified in the parameter;
  • getElementsByClassName(class_name) => gets the HTML elements by class name as specified in the parameter.

Now let's work with code for a change, shall we? Consider the following code, which has no contents in its <h1> tag.

Now then let's write its content using JavaScript:

html

index

css

index

js

index

copy

This change was possible with the help of the innerHTML property.

Properties

You can add properties to methods, as you saw above, to change the contents of HTML elements. In the next chapter, you'll learn more about the properties.

1. What is the root element of the DOM tree?
2. Which of the below methods that JavaScript provides to manipulate the DOM?

What is the root element of the DOM tree?

Selecciona la respuesta correcta

Which of the below methods that JavaScript provides to manipulate the DOM?

Selecciona unas respuestas correctas

¿Todo estuvo claro?

Sección 1. Capítulo 1
We're sorry to hear that something went wrong. What happened?
some-alt