klev2004,
В данной ситуации лучше использовать
stopPropogation (отменяет всплытие события наверх).
<div id="id1">
<a href="#" id="id2">link</a>
</div>
$('#id1').click(function(){
alert('id1');
});
$('#id2').click(function(event){
alert('id2');
event.stopPropogation();
});