I'm having an issue with events not firing in the intended order. I have an event on an input element for focus and focusout. The .focus() shows some content, the .focusout() hides it. I want to be able to .click() on some of the data that I'm showing with the .focus(), however when I click on it, the first thing to fire is the .focusout() event handler, and for some reason the action of hiding the content screws with the .click() event handler.I'm having an issue with events not firing in t