You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
svelte/documentation/tutorial/16-special-elements/04-svelte-window/text.md

14 lines
369 B

---
title: <svelte:window>
---
Just as you can add event listeners to any DOM element, you can add event listeners to the `window` object with `<svelte:window>`.
On line 11, add the `keydown` listener:
```svelte
<svelte:window on:keydown={handleKeydown} />
```
> As with DOM elements, you can add [event modifiers](/tutorial/event-modifiers) like `preventDefault`.