I want to convert my own JavaScript event object to a jQuery event object.
This is actually a problem: I linked the event handler to the keyup documents via jQuery, and there are text fields on the page that the keyup event handler is keyup through inline JavaScript.
The problem is that the text field's event handler is triggered by the document's event handler, which also fires because the event is bubbling. I can change the event handler function associated with inline JavaScript, but not with the line itself.
What I'm looking for is a cross browser, a way to undo an event burst, so I wanted to convert it to a jQuery object.
source share