jQuery :header Selector

You are Here:

jQuery :header Selector

The jQuery :header selector selects all elements that are headers.

Note: <h1>, <h2>, <h3>, <h4>, <h5>, and <h6> are the headers. But, not the <header> tag.

Example

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 selector :header</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>

Syntax

$(":header")

Reminder

Hi Developers, we almost covered 99.5% of jQuery Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in jQuery.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author