Javascript examples for jQuery Method and Property:find
Get all element with find('*');
<!DOCTYPE html> <html> <head> <style> .ancestors * {/*from ww w . j av a 2 s . com*/ display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("html").find("*").css({"color": "red", "border": "2px solid red"}); }); </script> </head> <body class="ancestors">body <div style="width:500px;">div <ul>ul (direct parent) <li>li <span>span</span> </li> </ul> </div> </body> </html>