Let's say I have an event named "bar" on element #foo.
Is there a way I can use jQuery deferred objects to force a function to execute immediately after the bar event listener(s) has/have executed (returned), whether or not any bar listeners cancel the event?
Or maybe I don't even need jQuery for this?
EDIT: Just to clarify, triggering another event or function from within the bar handler is not what I'm looking for—the bar handler hasn't returned yet, so that's not "after that bar event." This question may seem odd and not make sense because I'm trying to address a very specific issue/bug in IE 8.
Something like this is needed:
$('#foo').afterEvent('bar').then(function() {
// do something
});
paste, no matter the return value ofpaste. I've attached to every event in MSFT's IE API for atextarea, and nothing I attach to fires. In other words, there's an event that's that IE fires afterpaste, but IE doesn't expose it to let me cancel it. Here's the issue: stackoverflow.com/questions/8995440/ie-onpaste-javascript-event – user979672 Jan 26 at 2:46setTimeoutdid the trick for me: jsfiddle.net/cfApa/27 The use of a 1ms timeout is quite common to get around some synchronization issues. And whenever it works, it works deterministically. – Ates Goral Feb 7 at 5:32