What is the safest way to determine if a Javascript object is an event?
|
1
|
|||||
|
|
|
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. |
||
|
|
|
|
Interesting question. I've needed this in the past when a function could optionally be called as the handler for an event. If called directly however it skips event-specific code paths. Since I was using libraries that normalized the passing of the Anyway, to answer you question,
This works even on immutable types such as strings and numbers. For those, setting the This is not robust for obvious reasons, however it is an interesting alternative to the duck-typing advice given so far IMHO. |
||
|
|
|
|
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... Cheers Ramesh Vel |
||||||||||||||
|
