Open In App

jQuery :even Selector

Last Updated : 11 Jul, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

jQuery is an open-source JavaScript library that simplifies the interactions between an HTML/CSS document, or more precisely the Document Object Model (DOM), and JavaScript. Elaborating on the terms, it simplifies HTML document traversing and manipulation, browser event handling, DOM animations, Ajax interactions, and cross-browser JavaScript development.

The jQuery:even selector used to select an even number index from the elements. The number of the index starts from 0. The working is the same as odd selectors but for even numbers.

Syntax 

$(":even")

Example 1:  In this example we are using the above-explained method.

HTML




<!DOCTYPE html>
<html>
 
<head>
    <script src=
    </script>
    <script>
        $(document).ready(function () {
            $("tr:even").css("background-color",
                "green");
        });
    </script>
</head>
 
<body>
    <center>
        <h1>GeeksForGeeks</h1>
        <table border="1">
            <tr>
                <th>Company</th>
                <th>Country</th>
            </tr>
            <tr>
                <td>reliance</td>
                <td>India</td>
            </tr>
            <tr>
                <td>flipkart</td>
                <td>India</td>
            </tr>
            <tr>
                <td>walmart</td>
                <td>American</td>
            </tr>
            <tr>
                <td>Ernst Handle</td>
                <td>Austria</td>
            </tr>
            <tr>
                <td>Island Trading</td>
                <td>UK</td>
            </tr>
        </table>
    </center>
</body>
 
</html>


Output: 

Example 2: 

HTML




<!DOCTYPE html>
<html>
 
<head>
    <script src=
    </script>
    <script>
        $(document).ready(function () {
            $("tr:even").css("background-color",
                "lightgreen");
        });
    </script>
</head>
 
<body>
    <center>
        <h1>Welcome To GeeksForGeeks
        </h1>
        <table border="2">
            <tr>
                <th>State</th>
                <th>Capital</th>
            </tr>
            <tr>
                <td>uttar pradesh</td>
                <td>lucknow</td>
            </tr>
            <tr>
                <td>punjab</td>
                <td>chandigarh</td>
            </tr>
            <tr>
                <td>haryana</td>
                <td>chandigarh</td>
            </tr>
        </table>
    </center>
</body>
 
</html>


Output:

Supported Browsers: 

  • Google Chrome 90.0+
  • Internet Explorer 9.0
  • Firefox 3.6
  • Safari 4.0
  • Opera 10.5


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads