jQuery - find( selector ) Method



Description

The find( selector ) method searches for descendant elements that match the specified selector.

Syntax

Here is the simple syntax to use this method −

selector.find( selector )

Parameters

Here is the description of all the parameters used by this method −

  • selector − The selector can be written using CSS 1-3 selector syntax.

Example

Following is a simple example a simple showing the usage of this method.

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
            $("p").find("span").addClass("selected");
         });
      </script>
		
      <style>
         .selected { color:red; }
      </style>
   </head>
	
   <body>
      <div>
         <p><span>Hello</span>, how are you?</p>
         <p>Me? I'm <span>good</span>.</p>
      </div>
   </body>
</html>

This will produce following result −

Example

Following is a simple example a simple showing the usage of this method.

<html>
   <head>
      <title>The jQuery Example</title>
      <script type = "text/javascript" 
         src = "https://www.tutorialspoint.com/jquery/jquery-3.6.0.js">
      </script>
		
      <script type = "text/javascript" language = "javascript">
         $(document).ready(function() {
            $("p").find("span").addClass("selected");
         });
      </script>
		
      <style>
         .selected { color:red; }
      </style>
   </head>
	
   <body>
      <div>
         <p><span class = "selected">Hello</span>, how are you?</p>
         <p>Me? I'm <span class = "selected">good</span>.</p>
      </div>
   </body>
</html>

This will produce following result −

jquery-traversing.htm
Advertisements