UPDATE: had to completely rewrite my solution. The blur event handler is attached to the event that loses focus: if it was similar to mouseout event, we could know which element will get the focus, but there's no such luck. So we have to resort capturing .click events instead - and trigger some function based on it, instead of listening to blur events.
var inputIsBlurred = function() {
console.log('Run away!!!');
};
$(document).click(function(e){
var $target = $(e.target);
console.log($target);
if ($target.is('#some_input') // fired by an input - no special effects
|| $target.is('#show-anyways') // fired by 'show-anyways' div
|| $target.parents('#show-anyways').length > 0 // ... or its children
) {
return true; // move along, nothing to do here
}
inputIsBlurred();
});
Here's a fiddle to play with. Sorry for that confusion caused by my original answer. (
e.preventDefault,e.stopPropagation, or determine which was clicked and stop the bubbling before it hits the target. The design flaw I feel like is that you have a blur event handler on the DOM? Do I understand that right? – Jared Farrish Jun 23 '12 at 22:40