focusout

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...

Setting jQuery focus

Problem I'm trying to do an effect where a pop-up appears when the user mouses over. The focus is then set on that popup. When the user does a focusout of said pop-up, it disappears. Example You can view a working example below, but you'll need to login as "testuser" in both usernames and password fields. Hover the login box once logg...