Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • How to Add/Remove multiple classes in Jquery

    • 0
    • 0
    • 1
    • 0
    • 0
    • 0
    • 0
    • 0
    • 613
    Comment on it

    If you want to remove mutiple classes on click of a button:
    HTML:

    1. <div class="container">
    2. <span class="class1 class2 class3"></span>
    3. <button id="clear" type="button"></button>
    4. </div>

    JS:

    1. $("#clear").click(function(){
    2. $("span").removeClass("class2 class3")
    3. });

    To add mutiple classes:

    1. $("#clear").click(function(){
    2. $("span").addClass("class2 class3")
    3. });

    This is how you can add/remove multiple classes.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: