Reference document.body : document « jQuery « JavaScript DHTML






Reference document.body

 
<html>
  <head>
    <script type="text/javascript" src="js/jquery-1.3.2.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){

               $(document.body).click(function () {
                  $(document.body).append($("<div>asdf</div>"));
                  var n = $("div").length;
                  $("span").text("There are " + n + " divs." + "Click to add more.");
               }).trigger('click');

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

   
  








Related examples in the same category

1.Sets the background color of the page to black
2.Get document width
3.Document height
4.Get elements in body tags