jQuery find( selector ) Method

« Previous Chapter Next Chapter »

Description:

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

Syntax:

Here is the simple syntax to use this method:

Example

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.

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.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>NewFile.</span>, how are you?</p>
      <p>Me? I'm <span>good</span>.</p>
   </div>
</body>
</html>
                                        

This would generate following result.

Example

<html>
<head>
   <script type="text/javascript"  src="../../js/jquery-2.2.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">NewFile.</span>, how are you?</p>
      <p>Me? I'm <span class="selected">good</span>.</p>
   </div>
</body>
</html>
                                        
Code It Online

« Previous Chapter Next Chapter »

Have Any Suggestion? We Are Waiting To Hear from YOU!

Your Query was successfully sent!