- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to locate descendant elements of a particular type of elements in jQuery?
Use the jQuery find() method to locate descendant elements of particular type of elements in jQuery. The jQuery.find() method will return the descendant elements of the selected element.
Example
You can try to run the following code to learn how to work with jQuery.find() method,
<!DOCTYPE html> <html> <head> <style> .myclass * { display: block; border: 2px solid red; padding: 2px; margin: 10px; color: red; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("ol").find("span").css({"background-color": "blue", "border": "5px solid gray"}); }); </script> </head> <body class="myclass">body <div style="width:500px;">div <ol>ol <li>li <span>The descendant element</span> </li> </ol> </div> </body> </html>
- Related Articles
- How to locate all the descendant elements of a particular type of element?
- How to locate a particular module in Python?
- How to select a subset of the matched elements in jQuery()?
- Number of elements a particular tag contains in JavaScript?
- Python + Selenium | How to locate elements in span class & not unique ID
- Count of elements matching particular condition in Python
- How to remove DOM elements in jQuery?
- jQuery parent descendant Selector
- How to change first and last elements of a list using jQuery?
- How to select multiple elements with jQuery?
- How to use jQuery to get the value of HTML attribute of elements?
- How to loop through all the iframes elements of a page using jQuery?
- How to get text contents of all matched elements using jQuery?
- How to stop the bubbling of an event to parent elements in jQuery?
- How to call a jQuery plugin without specifying any elements?

Advertisements