Open In App

jQuery is() Method

Improve
Improve
Like Article
Like
Save
Share
Report

The is() method is used to check if one of the selected elements matches the selectorElement

Syntax:

$(selector).is(selectorElement, function(index, element))

Parameters: This method accepts parameters above mentioned and below described:-

  • selector: It is an optional parameter. It specifies the selector from which the event will remove.
  • selectorElement: It is a required parameter that specifies a selector expression, element, or jQuery object to match the current set of elements against. It returns true if there is at least one match from the given argument, and false if not.
  • function(index, element): It is an optional parameter that specifies a function to run for the group of selected elements.
    • index: the index position of the element
    • element: the current element (the “this” selector can also be used)

The below example illustrate the is() method in jQuery:

Example:

html




<!DOCTYPE html>
<html>
 
<head>
    <script src=
    </script>
    <script>
        $(document).ready(function () {
            $("p").click(function () {
                if ($("p").parent().is("div")) {
                    alert("Parent of p is div");
                }
            });
        });
    </script>
</head>
 
<body>
    <center>
        <h1>GeeksforGeeks</h1>
        <div>
            <p>Click me to find out if
                I my parent is a div element.
            </p>
        </div>
    </center>
</body>
 
</html>


Output:

jquery-9



Last Updated : 07 Jul, 2023
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads