Skip to content

useWindowEvent ​

Category
Browser

Hook attaches an event listener to the window object for the specified event

typescript
import { useWindowEvent } from '@siberiacancode/reactuse';

Usage ​

typescript
useWindowEvent('click', () => console.log('clicked'));

Demo ​

Api ​

Parameters

NameTypeDefaultNote
eventEvent-The event to listen for.
listener(event: WindowEventMap[Event]) => void-The callback function to be executed when the event is triggered
options?UseEventListenerOptions-The options for the event listener

Returns

void

Contributors ​

Source • Demo