From what I see it might not be possible, here is a quote from mozilla site:
https://developer.mozilla.org/en/DOM/element.addEventListener#Memory_issues
Memory issues
document.addEventListener("load",
function(event) { obj.func(event); },
false);
Calling addEventListener to an
anonymous function creates a new
listener each time. Calling
removeEventListener to an anonymous
function has no effect. An anonymous
function creates a unique object each
time is is called, it is not a
reference to an existing object though
it may call one. When adding an event
listener in this manner be sure it is
added only once, it is permanent (can
not be removed) until the object it
was added to is destroyed.
if the listener is not anonymous you could do it. Here is a piece of code from YUI library Event:
/**
* Returns all listeners attached to the given element via addListener.
* Optionally, you can specify a specific type of event to return.
* @method getListeners
* @param el {HTMLElement|string} the element or element id to inspect
* @param sType {string} optional type of listener to return. If
* left out, all listeners will be returned
* @return {Object} the listener. Contains the following fields:
* type: (string) the type of event
* fn: (function) the callback supplied to addListener
* obj: (object) the custom object supplied to addListener
* adjust: (boolean|object) whether or not to adjust the default context
* scope: (boolean) the derived context based on the adjust parameter
* index: (int) its position in the Event util listener cache
* @static
*/
getListeners: function(el, sType) {
var results=[], searchLists;
if (!sType) {
searchLists = [listeners, unloadListeners];
} else if (sType === "unload") {
searchLists = [unloadListeners];
} else {
sType = this._getType(sType);
searchLists = [listeners];
}
var oEl = (YAHOO.lang.isString(el)) ? this.getEl(el) : el;
for (var j=0;j<searchLists.length; j=j+1) {
var searchList = searchLists[j];
if (searchList) {
for (var i=0,len=searchList.length; i<len ; ++i) {
var l = searchList[i];
if ( l && l[this.EL] === oEl &&
(!sType || sType === l[this.TYPE]) ) {
results.push({
type: l[this.TYPE],
fn: l[this.FN],
obj: l[this.OBJ],
adjust: l[this.OVERRIDE],
scope: l[this.ADJ_SCOPE],
index: i
});
}
}
}
}
return (results.length) ? results : null;
},
you can read more here:
http://developer.yahoo.com/yui/event/