What is the safest way to determine if a Javascript object is an event?
|
|
It's fairly good practice to probe possibly "unknown" objects for the properties and methods you expect to find. So, assume you have got an event object, and probe it before acting on it, e.g.
It's important to note that I'm NOT suggesting you test for 'target' to see if its an event: you're testing for target because you're about to use that property. What I'm driving at is that instead of trying to figure out whether an object is event, probe the object to see whether it is going to behave in the way you expect, then use those behaviours. Code like this should degrade gracefully on browsers with different support, or let you take advantage of browser-specific extensions, e.g.
|
|||||||||||||
|
|
I don't know if there's a sure-fire way to do that, but I think your best shot is duck-typing. Anyway, depending on the situation you could check if a given object has the expected properties that you want to use, just like Paul pointed out. |
|||
|
|
|
This isEvent function checks the constructor for the unknown object, converts it to a string, and then searches that for the known event types:
|
|||
|
|
|
I have the same concern. So I set out to prove, and I got closer to the solution.
I tested this feature in
I hope this helps. |
||||
|
|
|
Old question, but apparently according to this, http://www.quirksmode.org/js/events_properties.html RameshVel added this in an edit to his answer but it was heavily down-voted. Of course the safest way is to follow the guidance of the accepted answer, but it just so happened that I want to discard the object if it is an event. |
|||
|
|
|
you can use getAttribute of an object (event) to check whether the object is an event or just an object.
or if you have the event.type constants then you can loop over them and check whether ihe instance is a event or not
EDIT cant we just check
am sure all events must come with an valid event type.. i think this should work... |
|||||||||||||||||
|