HTML Editor
<!DOCTYPE html> <html lang="en-US"> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script> </head> <body> <h1>jQuery :header Selector</h1> <h2>This is h2</h2> <h3>This is h3</h3> <h4>This is h4</h4> <h5>This is h5</h5> <h6>This is h6</h6> <p>Header is heading.</p> <script> $(document).ready(function(){ $(":header").css("color","green"); }); </script> </body> </html>
OUTPUT
×

Save as Private