Add tag returned from document.getElementById : add « jQuery « JavaScript DHTML






Add tag returned from document.getElementById

   


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


        });
    </script>
  </head>
  <body>
    <body>
          <p>Hello</p>
          <p id="a">Hello</p>
  </body>
</html>

   
    
    
  








Related examples in the same category

1.add(expr): adds more elements
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