Author -  Sai gowtham

How to Add or Remove Element Class Name using JavaScript

In this tutorial, we are going to learn about how to add or remove a class name to an html element by using JavaScript.

Consider we have a div element with an id, and two button elements.

<div id="box">
  This is div
</div>

<button id="add-btn">Add class</button>
<button id="remove-btn">Remove class</button>

Now, we need to add a class to the div element by clicking on a Add class button and remove a class by using the Remove class button.

Adding class

In JavaScript, we have a classList property which contains a add() method that is used to add a class to an element.

Example:

const div = document.getElementById('box');
const addBtn = document.getElementById('add-btn');

addBtn.addEventListener('click',()=>{
    div.classList.add('shadow');})

Now, if we click on a Add class button the shadow class is added to the div element.

Removing class

To remove a class we need to use the remove() method in classList property.

const div = document.getElementById('box');
const removeBtn = document.getElementById('remove-btn');

removeBtn.addEventListener('click',()=>{
    div.classList.remove('shadow');})

Now, if we click on a Remove class button the shadow class is removed from the div element.

Codepen Demo

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY