Open In App

jQuery :even Selector

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.






<!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: 




<!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: 


Article Tags :