jQuery focusoutside event

14 Mar 2010

I was doing my part helping out on StackOverflow in the jQuery tag yesterday and ran across a question asking how to hide a div on blur of an input field as long as the click wasn’t inside a div that “connected” to that input field.  What I ended up with for an answer was to bind a click and a focusin event on the document and check of the event.target was or is a child of the div we care about.  The focusin event is a special focus event the bubbles since the normal focus event does not. I needed to use the focusin event incase the user tabbed to the next field rather then clicking. This got me thinking, Ben Alman created a custom jQuery event ‘clickoutside’ for those times when you need to know that the user just clicked outside of your div and you should now close it. If the same code could also handle the focusin event then it would make answering that question very slick.  So I forked Ben Alman’s clickoutside event on github and did some hacking to add the focusoutside event.  I am sure the code could be shorted up even more then it is now but it works nicely.

UPDATE

My hacking inspired Ben to do some hacking of his own and we worked on making the plugin work for all the native jQuery events that made since to have outside versions.  Check out the new jQuery Outside Events.