vote up 6 vote down star
1

What is the safest way to determine if a Javascript object is an event?

flag

Why would you want to do this? – Tim Down Sep 22 at 9:58
@Tim Down: Because I need to make the difference between a random JS object, an HTML element and an event that's being sent as parameter to my function. – Tom Sep 23 at 10:08

4 Answers

vote up 2 vote down check

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.

if (event.target)
{
   //looks like we're an event, hide the target
   var e=$(event.target);
   e.hide();
}

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.

if (event.initKeyEvent)
{
    //gecko 1.9+
    event.initKeyEvent(...)
}
link|flag
Again, the event example will not work in IE, which has a srcElement property instead of target. – Tim Down Sep 22 at 9:51
1  
You've misunderstood - you're not testing 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. – Paul Dixon Sep 22 at 10:00
Fair enough. I don't think it really answers the original question, but then I can't see why you'd ever need to test if an object is an event anyway. – Tim Down Sep 22 at 10:10
Now here's an interesting thought... I need only three properties of the Event object (if it really is an object) so I'll just check if it has all three an make sure their types are the ones I need. If the user is idiot enough to send me a fake object with usable values, it is entirely her fault. Thanks! – Tom Sep 23 at 10:13
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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 event object to my handler, I simply checked for the presence of the event argument in my handler.

Anyway, to answer you question, event objects have the particular characteristic that many (all?) of their properties are read-only. You can pick the ubiquitous property "type" and try to set it. On failure, you've most likely got an event object:

function foo(event) {
    var isEvent = false;

    try { event && (event.type = '') }
    catch(e) { isEvent = true }

    // ...
}

This works even on immutable types such as strings and numbers. For those, setting the type property, although does not throw the exception, does not have any effect on the object at all.

This is not robust for obvious reasons, however it is an interesting alternative to the duck-typing advice given so far IMHO.

link|flag
vote up -4 vote down

you can use getAttribute of an object (event) to check whether the object is an event or just an object.

try{
     event.getAttribute('type')
     isEvent=true;
}
catch(ex)
{
     isEvent=false;     
}

or if you have the event.type constants then you can loop over them and check whether ihe instance is a event or not

EventNames = new Array();
EventNames[0]="load";  //all event names are kept in this array
for(i=0;i<EventNames;i++)
{
  if (event.type==EventNames[i])
         isEvent=true;
 }

EDIT

cant we just check

try{    
if (event.type=="")
        isEvent=false;
}
catch(ex)
{
     isEvent=false;
}

am sure all events must come with an valid event type.. i think this should work...

Cheers

Ramesh Vel

link|flag
No. Event objects in browsers other than IE do not have a getAttribute method. – Tim Down Sep 22 at 9:57
okie.. is there any equivalent in firefox for getAttribute() method..?? – Ramesh Vel Sep 22 at 10:27
2  
getAttribute is a standard method for DOM Elements which is available in all browsers. It is a bug that it even exists for Event objects in IE, and certainly not something you should rely on. If you only mean to check for the presence of a ‘type’ property, just do var isEvent= thing.type!==undefined;. But ‘type’ is a poor choice of property to check, since many other DOM objects have a ‘type’ property. – bobince Sep 22 at 13:17
1  
(In general, you should avoid all use of getAttribute for HTML documents, as it has serious bugs in IE. Accessing the JavaScript/DOM-HTML properties is much more reliable, and easier to read too.) – bobince Sep 22 at 13:23
@bobince, i have updated my answer. can u check that... – Ramesh Vel Sep 23 at 5:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.