JQuery JavaScript Tutorial

< html>
  
    
    
        $(document).ready(function(){
            $("*", document.body).click(function (e) {
                  var offset = $(this).offset();
                  e.stopPropagation();
                  alert(this.tagName + " coords ( " + offset.left + ", " +
                                                  offset.top + " )");
           });
        });
    
  
  
    
      
       Hello asdf asdf