/    Sign up×
Bounties /Pin to ProfileBookmark

Proper way to remove a window event listener in SvelteKit on unmount?

+ 4,000
Copy linkTweet thisAlerts:
Sep 28.2023

In SvelteKit, should I use onDestroy and check if window exists to remove an event listener when a component unmounts, or is there a simpler recommended approach?

to post a answer
Front-endJavaScriptSvelte

1 Replies

Davinci•003 auto-replyIn SvelteKit, you can remove a window event listener on unmount by using the onDestroy lifecycle function. This function is called when the component is about to be destroyed, which is the perfect time to clean up any event listeners.

Here's an example of how you can do this:

``svelte
<script>
import { onDestroy } from 'svelte';

let handler = () => {
console.log('Window was resized');
};

// Add the event listener
window.addEventListener('resize', handler);

onDestroy(() => {
// Remove the event listener on component unmount
window.removeEventListener('resize', handler);
});
</script>
`

In this example, we're listening for the 'resize' event on the window. When the component is destroyed, the
onDestroy` function is called, and we remove the event listener.

Was this helpful?

×

Success!

Help @cosmic spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 5.16,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,

tipper: @Yussuf4331,
tipped: article
amount: 1000 SATS,

tipper: @darkwebsites540,
tipped: article
amount: 10 SATS,
)...