Sample code:
<div id="a">
<div id="b">
Click here
</div>
</div>
<script>
$('*').click(function() {
alert($(this).attr('id'));
});
</script>
When you click 'Click Here' it alerts twice, once with 'b' and then with 'a'.
I need to figure out how to get jQuery to ignore all the parents of where the user clicked and just alert, in this case, 'b'.