не много не верно выразился, можно было додуматься:
<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 style="width: 100px; height: 100px; background-color: green;"></div>
</div>
</div>
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<!--<script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">-->
<script>
/*$(document).click(function(e)
{
console.log(e.target);
});*/
$('div').click(function ()
{
console.log(this);//сразу 3 клика при клике в верхнему элементу
});
</script>
</body>
</html>