Skip to main content

Intro to DOM: Study Notes for Manipulating Style


In the last post, I shared my study note about five DOM methods of selecting the element. The next step will be manipulate those selected element. Remember the whole process is select an element and then manipulate.

There are different ways of manipulation:

  • changing an element's style
  • adding/removing classes
  • changing the content of a tag
  • changing attribute.

Style

The style property is one way to manipulate an element's style.

I will continue to use the previous HTML page as an example.

var tag = document.getElementById("highlight");  //select

tag.style.color = "blue"  //manipulate                                     
tag.style.background = "pink";  //manipulate



In the example, I select the ID element which corresponds to the first list item. I changed the text color and background by manipulating style in JavaScript. As you see, the text color changes to blue and covers a pink background immediately.

MDN Web Doc recommends for styles to be defined in a separate file or files. The style property allows for quick styling such as testing. 

classList

It is a read-only list that contains the classes for a given element. And it is not an array.
  1. add a class: tag.classList.add("some class");
  2. remove a class: tag.classList.remove("some class");
  3. toggle a class: tag.classList.toggle("some class")
Toggle is very useful. It takes a class name, and if the given element has that class already, it will then remove it. If the element doesn't have that class then it will turn on.

For example, I create a new class selector on inside style tag named ".big". And I want to add this ".big" to the h1 tag in the JavaScript. This will make the h1 text in pink and cover in yellow background.


I select the h1 element by using querySelector, and then I add "big" to the class.by writing h1.classList.add("big"). The result shows the changes immediately. You can try remove and toggle by yourself.


Text Content

It returns a string of all the text contained in a given element.

For example, if I want to change the h2 text content. All I need to do is:

var h2 = document.querySelector("h2");  //select the element
h2.textContent;  //retrive the text content
h2.textContent = "Some Practices";  //alter the text content

As you can see, the h2 text content has changes from "Practices" to "Some Practices".


Attributes

We use getAttribute() and setAttribute() to read and write attribute like src or href.

In this HTML example, I don't have any src or href attributes. The basic concepts are:

If we want to change a link, we can write:

var link = document.querySelector("a");
link.getAttribute("href");
link.setAttribute("href","www.xxx.com");

Comments

Popular posts from this blog

Intermediate Express.js: How To Add Styles & Partials in EJS File?

So far, we only have simple HTML tags and ejs tags in each ejs file. Every template page has no style at all. And the basic HTML header and footer are also missing. Today, I learned how to add styles and partials in ejs file. Link Style Step One: Touch a Separate CSS file I create a new directory "Style" under the "EJSDemo" directory, then I add a new CSS file "app.css" inside "Style" folder. Step Two: Add app.use(express.static()) in the app.js I add app.use(express.static("style")) in the "app.js". This will tell Express.js to serve the content of "Style" directory. Step Three: Write styles in CSS file I simple give body an orange background color and set text color to be grey. Step Four: Link to CSS file in the EJS file I just add <link> tag to link the "app.css" file on the top of the h1 tag in each ejs template. As the result, when I run the app and...

Seven Most Common jQuery Methods Last Part: ADD/REMOVE/TOGGLE CLASS()

Add, remove and toggleClass is also a very common way to manipulate style. .addClass() and .removeClass() I add two class selector in the style tag. Class one is to change text color to be green, and class two is change both text and background color.  Now I refresh the page and change h1 text to green by using addClass() method: $("h1").addClass("one") .  If you want to remove the style, you can change it to removeClass("one"). I do the same thing to the list. I change the list color and add a background color by adding the class two style value: $("li").addClass("two") . .toggleClass()  According to jQuery, toggerClass method can add or remove one or more classes from each element in the set of matched elements, depending on either the class's presence or the value of the state argument. I only want to change the first list item color and background by writing: $("li").first().toggleClas...

Intro to Backend: Is Browser The Only Place To Send HTTP Request?

Today,  I begin to learn the second part of web develop course: backend. Frontend is the stuff that we can see and interactive with, such as HTML, CSS, and JS. We can type our code, style our page, or write some function to make interaction. However, backend is everything else. For example, we type Target web address in the Internet Browser. As we hit "enter", there are a few steps to go through: 1. The HTTP request is sent to a particular server's IP address. 2. The server figures out what to send us 3. It sends a HTTP response back to us Those process we are hard to see, and it happens in less than one second. The instructor said that the browser is not the only place to send the HTTP request, and there are so many choices out there. In this learning course, we are going to use Postman App . Postman allows us to make HTTP requests and viewer responses. It is really for developers to understand how things are working or debug something. In the P...