Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div id="foo"><span>click here</span></div>
  <script>
    (function() {
      var someObject = {};
      $("#foo").on("click", $.proxy(function(e) {
        display("e.target.tagName = " + e.target.tagName);
        display("e.currentTarget.tagName = " + e.currentTarget.tagName);
      }, someObject));
      
      function display(msg) {
        var p = document.createElement('p');
        p.innerHTML = String(msg);
        document.body.appendChild(p);
      }
    })();
  </script>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers