Projects

Modifying Element Properties

Introduction

Now that you've learned how to select elements in the DOM, it's time to learn how to modify their properties. Modifying element properties is a crucial part of dynamic web development, as it allows you to change the content, layout, and behavior of your web pages in response to user interactions.

Think of modifying element properties like changing the settings on your phone. Just like how you can change the wallpaper, ringtone, or font size on your phone, you can change the properties of an element in the DOM to make it look or behave differently.

Modifying Text Content

One of the most common ways to modify an element's property is to change its text content. You can do this using the textContent property.

The textContent property is like a container that holds the text inside an element. You can think of it like a box where you can put words or sentences.


<!DOCTYPE html>
<html>
<head>
<title>Change Text Content</title>
</head>
<body>
<p id="myParagraph">Hello World!</p>


<script>

const paragraph = document.getElementById('myParagraph');
paragraph.textContent = 'Goodbye World!';

</script>


</body>
</html>

In this example, we select the paragraph element with the ID "myParagraph" and change its text content to "Goodbye World!". This is like opening the box and replacing the words "Hello World!" with "Goodbye World!".

But what if you want to add more text to the paragraph instead of replacing it? You can use the += operator to add more text to the existing text.


<!DOCTYPE html>
<html>
<head>
<title>Add Text Content</title>
</head>
<body>
<p id="myParagraph">Hello World!</p>

<script>

const paragraph = document.getElementById('myParagraph');
paragraph.textContent += ' This is a new sentence!';

</script>


</body>
</html>

In this example, we add the sentence "This is a new sentence!" to the existing text "Hello World!".

You can also use the textContent property to get the text content of an element. For example:


<!DOCTYPE html>
<html>
<head>
<title>Get Text Content</title>
</head>
<body>
<p id="myParagraph">Hello World!</p>

<script>

const paragraph = document.getElementById('myParagraph');
console.log(paragraph.textContent); // Output: "Hello World!"

</script>


</body>
</html>

In this example, we select the paragraph element with the ID "myParagraph" and log its text content to the console.

Modifying Style

Another way to modify an element's property is to change its style. You can do this using the style property.

The style property is like a collection of settings that control the appearance of an element. You can think of it like a dashboard with different knobs and buttons that you can adjust to change the look of the element.


<!DOCTYPE html>
<html>
<head>
<title>Change Element Style</title>
</head>
<body>
<p id="myParagraph" style="color: blue;">Hello World!</p>

<script>
const paragraph = document.getElementById('myParagraph');
paragraph.style.color = 'red';
</script>


</body>
</html>

In this example, we select the paragraph element with the ID "myParagraph" and change its text color to red. This is like adjusting the color knob on the dashboard to change the color of the text.

But what if you want to change multiple styles at once? You can use thestyle property to change multiple styles in one go.


<!DOCTYPE html>
<html>
<head>
<title>Change Multiple Styles</title>
</head>
<body>
<p id="myParagraph" style="color: blue; font-size: 24px;">Hello World!</p>

<script>
const paragraph = document.getElementById('myParagraph');
paragraph.style = 'color: red; font-size: 36px;';
</script>


</body>
</html>

In this example, we change the text color to red and font size to 36px in one go.

Note that when using the style property, you can add any CSS property that you want to change. For example, you can change the background color, padding, margin, border, and more.

Also, when adding properties with two words, like font-size, you don't use the - symbol because it is used for subtraction in JavaScript. Instead, you use camel case, like fontSize. This is important to remember, as it can be confusing for beginners.

For example, if you want to change the font size and font family, you would use fontSize and fontFamily, not font-size and font-family.


<!DOCTYPE html>
<html>
<head>
<title>Change Font Properties</title>
</head>
<body>
<p id="myParagraph" style="color: blue; font-size: 24px;">Hello World!</p>

<script>
const paragraph = document.getElementById('myParagraph');
paragraph.style.fontSize = '36px';
paragraph.style.fontFamily = 'Arial';
</script>


</body>
</html>

In this example, we change the font size to 36px and font family to Arial using camel case.

Modifying Attributes

You can also modify an element's attributes using the setAttributemethod.

The setAttribute method is like a tool that allows you to change the attributes of an element. You can think of it like a screwdriver that you can use to adjust the settings of an element.


<!DOCTYPE html>
<html>
<head>
<title>Modify Attributes</title>
</head>
<body>
<img id="myImage" src="image.jpg" alt="An image">

<script>
const image = document.getElementById('myImage');
image.setAttribute('src', 'new-image.jpg');
</script>


</body>
</html>

In this example, we select the image element with the ID "myImage" and change its src attribute to "new-image.jpg". This is like using the screwdriver to adjust the src attribute of the image.

But what if you want to remove an attribute from an element? You can use the removeAttribute method to do so.


<!DOCTYPE html>
<html>
<head>
<title>Remove Attributes</title>
</head>
<body>
<img id="myImage" src="image.jpg" alt="An image">

<script>
const image = document.getElementById('myImage');
image.removeAttribute('alt');
</script>


</body>
</html>

In this example, we select the image element with the ID "myImage" and remove its alt attribute. This is like using the screwdriver to remove the alt attribute from the image.

Modifying Classes

You can also modify an element's classes using the classList property.

The classList property is like a list of stickers that you can put on an element. You can add, remove, or toggle classes to change the appearance or behavior of an element.


<!DOCTYPE html>
<html>
<head>
<title>Add Classes</title>
<style>
.blue {
color: blue;
}
.bold {
font-weight: bold;
}
</style>
</head>
<body>
<p id="myParagraph">Hello World!</p>

<script>
const paragraph = document.getElementById('myParagraph');
paragraph.classList.add('blue', 'bold');
</script>


</body>
</html>

In this example, we select the paragraph element with the ID "myParagraph" and add the "blue" and "bold" classes to it. This is like putting the blue and bold stickers on the paragraph element.

But what if you want to remove a class from an element? You can use theclassList property to remove a class from an element.


<!DOCTYPE html>
<html>
<head>
<title>Remove Classes</title>

<style>
.blue {
color: blue;
}
.bold {
font-weight: bold;
}
</style>

</head>
<body>
<p id="myParagraph" class="blue bold">Hello World!</p>

<script>
const paragraph = document.getElementById('myParagraph');
paragraph.classList.remove('bold');
</script>


</body>
</html>

In this example, we select the paragraph element with the ID "myParagraph" and remove the "bold" class from it. This is like removing a sticker from the paragraph element.

Summary

In this topic, you've learned how to modify element properties in the DOM. You can change the text content, style, attributes, and classes of an element to make it look or behave differently. Remember, modifying element properties is like adjusting the settings on your phone or using tools to change the appearance and behavior of an element.

In the next topic, you'll learn about events and how to handle user interactions with JavaScript.