

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
What does jQuery.children() method do in jQuery?
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>
- Related Questions & Answers
- jQuery children() method
- What does html() method do in jQuery?
- What does jQuery.andSelf( ) method do in jQuery?
- What does jQuery.offset() method do in jQuery?
- What does jQuery.serialize() method do in jQuery?
- What e.preventDefault() method really does in jQuery?
- What does the .end() function do in jQuery?
- How does jQuery replaceWith() method work?
- How does jQuery.filter() method work in jQuery?
- How does jQuery.find() method work in jQuery?
- How does jQuery.eq() method work in jQuery?
- How does jQuery.map() method work in jQuery?
- How does jQuery.slice() method work in jQuery?
- How does jQuery.nextAll() method work in jQuery?
- How does jQuery.clone() method work in jQuery?
Advertisements