The find( selector ) method searches for descendent elements that match the specified selector.
Here is the simple syntax to use this method:
selector.find( selector )
Here is the description of all the parameters used by this method:
selector: The selector can be written using CSS 1-3 selector syntax.
Following is a simple example a simple showing the usage of this method.
<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.
<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>
Your Query was successfully sent!