Skip to content
Related Articles
Open in App
Not now

Related Articles

jQuery | is() Method

Improve Article
Save Article
Like Article
  • Last Updated : 12 Apr, 2019
Improve Article
Save Article
Like Article

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 event will remove.
  • selectorElement: It is a required parameter which specifies a selector expression, element or a 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 which specifies a function to run for the group of selected elements.
    1. index: the index position of the element
    2. element: the current element (the “this” selector can also be used)

Below example illustrate the is() method in jQuery:
Example:




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

After:

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!