Skip to main content

removeEventListener

method Window.removeEventListener
Jump to headingWindow.removeEventListener<K extends keyof WindowEventMap>(
type: K,
listener: (
this: Window,
) => any
,
options?: boolean | EventListenerOptions,
): void

Type Parameters Jump to heading

Parameters Jump to heading

Jump to headinglistener: (
this: Window,
) => any
optional
Jump to headingoptions: boolean | EventListenerOptions

Return Type Jump to heading

void
Jump to headingWindow.removeEventListener(
type: string,
options?: boolean | EventListenerOptions,
): void
Back to top