views:

28

answers:

1

In javascript, is there a way yo as a element for the events that i can use to add listener.

Something like:

element = document.getElementById(id);
console.log(element.listEvents);

Im using a DOM example, but this would be usefull in node.js also.

A: 

No, there is no such way of retrieving a list of supported events for an element/object.

In case of Node.js you should read the api documentation:
http://nodejs.org/api.html

For HTML elements I would suggest that you search over at MDC, this should be a good starting point:
https://developer.mozilla.org/en/DOM/element#Event_Handlers

Ivo Wetzel