Jquery JavaScript DHTML


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