Tuesday, June 16, 2026
HomeLanguagesJavascriptHow to add class to an element without addClass() method in jQuery...

How to add class to an element without addClass() method in jQuery ?

The task is to add a new class to the element without using addClass() method with the help of jQuery. There are two approaches that are discussed below:

Approach 1: To perform the operation, we can use toggleClass() method to toggle the class which we want to add to the element.

  • Example:




    <!DOCTYPE HTML>
    <html>
      
    <head>
        <title>
            How to add class to an element without
            addClass() method in jQuery ?
        </title>
      
        <script src=
        </script>
      
        <style>
            #el {
                background: green;
            }
      
            .newClass {
                color: white;
            }
        </style>
    </head>
      
    <body style="text-align:center;">
      
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
      
        <p id="GFG_UP"></p>
      
        <p id="el">This is the element</p>
      
        <button onclick="GFG_Fun()">
            Click Here
        </button>
      
        <p id="GFG_DOWN"></p>
      
        <script>
            var el_up = document.getElementById('GFG_UP');
            var el_down = document.getElementById('GFG_DOWN');
      
            el_up.innerHTML = "Click on the button to "
                        + "perform the operation.";
                          
            function GFG_Fun() {
                $('#el').toggleClass('newClass');
                el_down.innerHTML = "Class has been added";
            }
        </script>
    </body>
      
    </html>

    
    
  • Output:

Approach 2: We can also use attr() method and prop() method to add a new attribute ‘class’ to the element.

  • Example:




    <!DOCTYPE HTML>
    <html>
      
    <head>
        <title>
            How to add class to an element without
            addClass() method in jQuery ?
        </title>
      
        <script src=
        </script>
      
        <style>
            #el {
                background: green;
            }
      
            .newClass {
                color: white;
            }
        </style>
    </head>
      
    <body style="text-align:center;">
      
        <h1 style="color:green;">
            GeeksForGeeks
        </h1>
          
        <p id="GFG_UP"></p>
      
        <p id="el">This is the element</p>
          
        <button onclick="GFG_Fun()">
            Click Here
        </button>
          
        <p id="GFG_DOWN"></p>
      
        <script>
            var el_up = document.getElementById('GFG_UP');
            var el_down = document.getElementById('GFG_DOWN');
      
            el_up.innerHTML = "Click on the button to "
                            + "perform the operation.";
                              
            function GFG_Fun() {
                $('#el').attr('class', 'newClass');
                el_down.innerHTML = "Class has been added";
            }
        </script>
    </body>
      
    </html>

    
    
  • Output:
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, neveropen Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
RELATED ARTICLES

Most Popular

Dominic
32516 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6964 POSTS0 COMMENTS