Change an element class JavaScript
The class name is used as a selector in HTML which helps to give some value to the element attributes. The document.getElementById() method is used to return the element in the document with the “id” attribute and the “className” attribute can be used to change/append the class of the element.
Syntax:
document.getElementById('myElement').className = "myclass";
Example 1: In this code change the class of the button from “default” to “changedClass” using the onclick event which in turn changes the background color of the button from RED to GREEN.
<!DOCTYPE html> <html> <head> <title>Change an element class with javascript</title> <style type="text/css"> .default{ background-color: red; } .changedClass{ background-color: green; } #myPara{ margin-top: 20px; } #myButton{ padding: 10px; } body { text-align:center; } h1 { color:green; } </style> <script type="text/javascript"> function changeClass() { document.getElementById('myButton').className = "changedClass"; var button_class = document.getElementById('myButton').className; document.getElementById('myPara').innerHTML = "New class name: " + button_class; } </script> </head> <body> <h1>GeeksforGeeks</h1> <h2>Chenge class name of element</h2> <button class="default" onclick="changeClass()" id="myButton">Click Here!</button><br> <p id="myPara">Old class name: default</p> </body> </html> |
Output:

Example 2 : In this code changed the class of the button from “default” to “newclass1” and “newclass2” using the onclick event.
<!DOCTYPE html> <html> <head> <title>Change an element class with javascript</title> <style type="text/css"> .default{ background-color: red; padding:5px; border:1px solid black; border-radius:3px; } .newclass1 { color:white; font-size:16px; font-weight:bold; border:1px solid black; } .newclass2 { padding: 10px; background-color:green; border-radius:3px; } h1 { color:green; } body { text-align:center; } </style> <script type="text/javascript"> function changeClass() { document.getElementById('myButton').className = "newclass1"; document.getElementById('myButton').classList.add("newclass2"); var button_class = document.getElementById('myButton').className; document.getElementById('myPara').innerHTML = "New class name: " + button_class; } </script> </head> <body> <h1>GeeksforGeeks</h1> <h2>Change class name of element</h2> <button class="default" onclick="changeClass()" id="myButton">Click Here!</button> <p id="myPara">Old class name: default</p> </body> </html> |
Output:

Recommended Posts:
- How to change the src attribute of an img element in JavaScript / jQuery ?
- JavaScript | Change the text of a span element
- JavaScript | Adding a class name to the element
- How to change the element id using jQuery ?
- How to change the shape of a textarea using JavaScript?
- JQuery | Change the text of a span element
- How to change the background color after clicking the button in JavaScript ?
- How to check an element contains a class using jQuery?
- Implementation of Array class in JavaScript
- How to set the value of a select box element using JavaScript?
- How to get font properties of particular element in JavaScript ?
- Print the content of a div element using JavaScript
- Find the min/max element of an Array using JavaScript
- JavaScript | Get the text of a span element
- JavaScript | How to add an element to a JSON object?
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



