The jQuery toggleClass() Method toggles between adding and removing one or more class names from each element in the set of matched elements.
Example of jQuery toggleClass:
Suppose, we have below HTML:
<div class="myclass">Your text here.</div>
When you apply $( “.myclass” ).toggleClass( “newClass” ), we get the following:
<div class="myclass newClass">Your text here.</div>
Again, if you apply $( “.myclass” ).toggleClass( “newClass” ) then you can get the value as it was before:
<div class="myclass">Your text here.</div>
For more details read jQuery reference.
Based on United States, Jacob Frazier is a skilled JavaScript developer with over 8 years of experience. He is passionate about change and trying new things, both professionally and personally. He loves startups and is extremely proactive.