.removeEventListener()

void Node.removeEventListener(String type, Function callback[, boolean capture = false])

Removes an event listner.

target.removeEventListener(type, callback, capture);

Removes an event listener from target with the same type, callback, and capture (which defaults to false).

See also: .addEventListener(), .dispatchEvent()