vote up 2 vote down star
1

I've just been working on a jQuery extension described in this question, and have now run into another problem: I need to make sure that my particular event handler runs before any other event handlers which may already be on an element.

When adding events, it appears as though they get pushed to the back of a queue, whereas I really need mine to be at the front, such that it can prevent other ones from running. How can you do this?

flag

68% accept rate
Hi again Nick, please check if this is what you're looking for: stackoverflow.com/questions/290254/… – Adam Alexander Apr 14 at 6:44

1 Answer

vote up 1 vote down

Maybe you'll find something useful here (jquery google groups) but from what I've read there is no "easy-to-use" function to work with the events stack

EDIT: there was also a link to this plugin there. It's called event stack binder.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.