Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Removing All the Classes from the Elements in jQuery</title> <style> .page-header{ color: red; text-transform: uppercase; } .highlight{ background: yellow; } .hint{ font-style: italic; } </style> <script src="https://code.jquery.com/jquery-3.5.1.min.js"></script> <script> $(document).ready(function(){ $("button").click(function(){ $("h1").removeClass(); $("p").removeClass(); }); }); </script> </head> <body> <h1 class="page-header">Demo Text</h1> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit...</p> <p class="hint highlight"><strong>Tip:</strong> Lorem Ipsum is dummy text.</p> <button type="button">Remove Class</button> </body> </html>