add(expr): adds more elements : add « jQuery « JavaScript DHTML






add(expr): adds more elements

  
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
                
           
            
    $("div").add("p")
            .css("background", "yellow");


                    

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

   
    
  








Related examples in the same category

1.Add tag returned from document.getElementById
2.Adds one or more Elements to the set of matched elements(document.getElementById)
3.Add class to the result returned from an add function