Как намек...
<!DOCTYPE html>
<html>
<head>
<script src='http://code.jquery.com/jquery-latest.js'></script>
<!--
<script src="https://code.angularjs.org/1.3.9/angular.min.js"></script>
<script src="https://code.angularjs.org/1.3.9/angular-route.js"></script>
<link rel='stylesheet type=text/css href=tmp.css' />
-->
<style type='text/css'>
#a, #b {
position: absolute; /* абсолютное позиционирование */
width: 100px; /* ширина */
height: 100px; /* высота */
}
#a {
background-color: red;
top: 100px;
}
#b {
background-color: green;
top: 250px;
}
</style>
<script type='text/javascript'>
$(function(){
$('#a').click(function(){
alert($(this).text());
});
});
function click1(Obj){
alert($(Obj).text());
};
</script>
</head>
<body>
<div id="a">Блок A</div>
<div id="b" onclick="click1(this)">Блок B</div>
</body>
</html>