Skip to content

Instantly share code, notes, and snippets.

@wplit
Created July 9, 2024 10:24
Show Gist options
  • Save wplit/4d96651df55c75f45595cd6598240083 to your computer and use it in GitHub Desktop.
Save wplit/4d96651df55c75f45595cd6598240083 to your computer and use it in GitHub Desktop.
manually trigger resize after page load
document.addEventListener("DOMContentLoaded", () => {
setTimeout(() => {
window.dispatchEvent(new Event('resize'))
}, 1000)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment