
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery children() Method Explained
If you want to return all the direct children of selected elements, then use the jQuery.children() method,
Example
You can try to run the following code to learn how to work with jQuery.children() method in jQuery,
<!DOCTYPE html> <html> <head> <style> .myclass * { display: block; border: 2px solid blue; color: black; padding: 3px; margin: 10px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("ol").children().css({"color": "red", "border": "5px solid red"}); }); </script> </head> <body class="myclass">body <div style="width:600px;">div <ol>ol <li>li - This is the child <span>span</span> </li> </ol> </div> </body> </html>
Advertisements