jquery need alternative to focusout()
Given the sample markup: <div> <input /> <input /> <input /> </div> How can one, via jQuery, determine that div has lost focus? I can use focusout() but that's not quite what I need. With focusout, it will get triggered as one tabs from input to input, as it's actually detecting (via event bubbling) that the input is losi...