а если надо будет навешать 100 событий. это получается в его случае if-ов дохера. или это событие надо будет удалить?
или надо сразу 2 события отработать:
<html>
<head>
<title>example</title>
</head>
<body>
<div style="width: 200px; height: 200px; background-color: red;">
<div style="width: 150px; height: 150px; background-color: yellow;"></div>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).click(function(e)
{
console.log(e.target);
});
</script>
</body>
</html>