How to Add Class to a Div using JQuery

In this tutorial, I'm going to show you how to add and remove class to a div using jQuery. I've created three buttons each assigned a jQuery function. To start with, be sure to include jQuery on your file in order for the code to work.

Creating our Sample

We create our sample by creating three styles with assigned class each. We name this as "index.php". To create this open your html editor and paste the code below.
  1. <!DOCTYPE html>
  2. <html lang = "en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width-device=width, initial-scale=1" />
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css" />
  6.                 <title>Add Class to a Div using JQuery</title>
  7.         </head>
  8.         <style>
  9.                 .blue{
  10.                         color:blue;
  11.                 }
  12.                 .green{
  13.                         color:green;
  14.                 }
  15.                 .red{
  16.                         color:red;
  17.                 }
  18.        
  19.         </style>
  20. <body>
  21.         <div style="height:30px;"></div>
  22.         <div class="row">      
  23.                 <div class="col-md-3">
  24.                 </div>
  25.                 <div class="col-md-6 well">
  26.                         <div id="addclass">
  27.                                 Try changing my COLOR
  28.                         </div>
  29.                         <br>
  30.                         <button type="button" id="red" class="btn btn-danger"> Red</button> <button type="button" id="green" class="btn btn-success">Green</button>
  31.                         <button type="button" id="blue" class="btn btn-primary">Blue</button>
  32.                 </div>
  33.                 <div class="col-md-3">
  34.                 </div>
  35.         </div>
  36. </body>
  37. <script src = "js/jquery-3.1.1.js"></script>   
  38. <script src = "js/bootstrap.js"></script>
  39. <script type = "text/javascript">
  40.         $(document).ready(function(){
  41.        
  42.                 $(document).on('click', '#blue', function(){
  43.                         $('#addclass').removeClass('red');
  44.                         $('#addclass').removeClass('green');
  45.                         $('#addclass').addClass('blue');
  46.                 });
  47.                
  48.                 $(document).on('click', '#red', function(){
  49.                         $('#addclass').removeClass('blue');
  50.                         $('#addclass').removeClass('green');
  51.                         $('#addclass').addClass('red');
  52.                 });
  53.                
  54.                 $(document).on('click', '#green', function(){
  55.                         $('#addclass').removeClass('red');
  56.                         $('#addclass').removeClass('blue');
  57.                         $('#addclass').addClass('green');
  58.                 });
  59.                
  60.         });
  61. </script>
  62. </html>
That's it. Happy Coding :)

Add new comment