wwEvent.removeEventListener

Removes an event handler from a DOM event. This function is the reverse of addEventListener and takes the exact same parameter signature.

This method is static so you don't need to instantiate an object:

wwEvent.removeEventListener( document,"mousemove",Instance.mouseMove,false);


o.removeEventListener(target,eventname,handler,bubbles)

Parameters

target
DOM Element instance

eventname
Name of the event as a string (ie. click, change, mousedown etc.)

handler
Function pointer to the handler function that will handle this event.

bubbles
true if you want event bubbling to continue - false if you want it to stop propagating.

See also:

Class wwEvent


  Last Updated: 12/17/2006 | © West Wind Technologies, 2008