<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='http://code.jquery.com/jquery-1.7.1.js'></script>
<script type='text/javascript'>
$(window).load(function(){
$('a').click(function(e){
console.log(e.target);
if($(e.target).hasClass('tooltip')){
return false;
}
});
});
</script>
</head>
<body>
<a href="http://w3cschool.cn">Title
<div class="tooltip">My text....</div>
</a>
</body>
</html>