© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Vishwa Bhat
Technology Enthusiast
did you try calling event.preventDefault() inside onbeforeunload listener?
event.preventDefault()
like:
window.onbeforeunload = e => { e.preventDefault(); // ... your custom logic }
Let me know if it works
ananth subbu
Yeah ....I have tried this l . No luck. Thanks @vishwa