Easily inject new classes using jQuery:
$( ".myEl" ).addClass( "boo ya" );
You can also use removeClass() to remove classes. This makes it easy to toggle between two states:
$( ".myEl" ).removeClass("boo").addClass( "ya" );
Join our DigitalOcean community of over a million developers for free! Get help and share knowledge in our Questions & Answers section, find tutorials and tools that will help you grow as a developer and scale your project or business, and subscribe to topics of interest.
Sign up