Is there a way to attach a jQuery event handler such that the handler is triggered before any previously-attached event handlers? I came across this article, but the code d
what about this? bind the event and than do this:
handlers.unshift( handlers.pop() );