<div id="div_">
DIV영역
<p id="p_">
P영역
<a id="a_" href="http://www.google.co.kr" target="_blank">A영역 구글 링크</a>
</p>
</div>
<section id="console"><br></section>
//DIV 영역에 클릭 이벤트 설정
$("#div_").on("click",function(event){
$("#console").append("<br>DIV 클릭");
});
//P 영역에 클릭 이벤트 설정
$("#p_").on("click",function(event){
$("#console").append("<br>P 클릭");
});
//A 영역에 클릭 이벤트 설정
$("#a_").on("click",function(event){
$("#console").append("<br>A 클릭");
//이벤트의 기본 동작을 중단한다.
event.preventDefault();
});