How to Add and Remove CSS using jQuery

Getting Started

First, we need the jQuery library. I've included the file in the downloadable of this tutorial, but if you want, you can get jQuery using this link.

Displaying our Element

Next, we display the element that we want to add and remove CSS. Create a new file, name it as index.html and paste the codes below.
  1. <!DOCTYPE html>
  2.         <meta charset="utf-8">
  3.         <title>How to Add and Remove CSS using jQuery</title>
  4. </head>
  5. <div id="myDiv">
  6.         <p>Add CSS to Me</p>
  7. </div>
  8. <button type="button" id="myBtn">Add Class</button>
  9.  
  10. <script src="jquery.min.js"></script>
  11. <script src="app.js"></script>
  12. </body>
  13. </html>

Creating our jQuery Script

Lastly, we create our jquery script that contains our add and remove css code. Create a new file, name it as app.js and paste the codes below.
  1. $(document).ready(function(){
  2.         $('#myBtn').click(function(e){
  3.                 var text = $(this).html();
  4.                 if(text == 'Add Class'){
  5.                         //Add CSS to our Div
  6.                         $('#myDiv').css('color', 'blue');
  7.                         //Change the display in our button
  8.                         $(this).html('Remove Class');
  9.                 }
  10.                 else{
  11.                         //remove our css
  12.                         $('#myDiv').css('color', '');
  13.                         //Change the display in our button
  14.                         $(this).html('Add Class');
  15.                 }
  16.         });
  17. });
That ends this tutorial. Happy Coding :) P.S. In case that you have a predefined CSS in a class and wanted to add it to an element, please refer to my tutorial, How to Add Class to a Div using JQuery.

Add new comment