From within a function like
function eventHandler(e) {
// ...
}
is there a reliable and efficient way to determine whether e is a DOM event?
|
From within a function like
is there a reliable and efficient way to determine whether |
|||
|
I don't believe there is a reliable way to determine if a given object is NOT a DOM event.
This ends up making So, is there a "reliable" way to tell if an object is an event? No. Edit — Note that all of this is irrelevant if you want to prevent event spoofing as you can create real events easily.
Edit2 — I've created a test jsFiddle trying to find some way to distinguish objects, but I haven't found anything definite yet. Note that I didn't bother to specify properties on the |
||||
|
|
|
Perhaps if the event bubbles UPDATED : OK the property you are looking for is However perhaps you should specify what you interpret as DOM event. Do you mean browser's native events, because this is DOM event too:
It is binded to a DOM node |
|||||||||
|
|
In jquery I created a testing function, something like this:
} and testing code:
the former alert shows false, while the latter shows true. See fiddle. UPDATE: It's safer to call something like preventDefault instead of trigger. |
|||||||||
|
eventHandlerbeing called? – Travis J Jan 18 at 20:44eis a DOM event. – Shmiddty Jan 18 at 20:49