Instead of selecting all and excluding some elements and bind event handlers to each of them, the easier way (imo) would be to attach the event handler just to the div and test whether a link was clicked or not (event delegation):
$('#yourDiv').click(function(event) {
if(event.target.nodeName !== 'A') {
// do your stuff
}
});
This would only work if the links don't have any other elements as children.
More robust might be using .delegate [docs] and the :not [docs] pseudo selector:
$('#yourDiv').delegate(':not(a)', 'click', function(event) {
// do your stuff
});
Update: Apparently, you have to add another click event handler to the div to be able to detect clicks on the div itself (my tests with using the delegate selector only failed):
$('#yourDiv')
.delegate(':not(a)', 'click', handler)
.click(function(event) {
if(event.target === this) { // only if the `div` was clicked
handler.apply(this, arguments);
}
});
Here, handler is the actual event handler you want to execute. By using an extra function, you don't have to repeat the code.