Mega Code Archive

 
Categories / JavaScript Tutorial / JQuery
 

Parents(expr) gets elements containing the unique ancestors

< html>   <head>     <script type="text/javascript" src="js/jquery-1.3.2.js"></script>     <script type="text/javascript">         $(document).ready(function(){                 var parentEls = $("p").parents()                                       .map(function () {                                              return this.tagName;                                            })                                       .get().join(", ");                 $("p").append("<strong>" + parentEls + "</strong>");         });     </script>   </head>   <body>     <body>           <div><p>Hello</p></div>           <div class="selected"><p>Hello Again</p></div>                </body> </html>