Children from DIV : children « jQuery « JavaScript DHTML






Children from DIV

     

<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("div").children().css("border", "3px double red");


        });
    </script>
  </head>
  <body>
    <body>
         <div><span>span</span>div</div>
  </body>
</html>

   
    
    
    
    
  








Related examples in the same category

1.Append SPAN one after another
2.Get target children length
3.children(expr): filter with an optional expression
4.Attaches a change event to the select that gets the text for each selected option
5.Add class to all children from UL