mirror of
https://forge.fsky.io/oneflux/omegafox.git
synced 2026-02-10 21:52:04 -08:00
9 lines
208 B
HTML
9 lines
208 B
HTML
<div>beforeunload demo.</div>
|
|
<script>
|
|
window.addEventListener('beforeunload', event => {
|
|
// Chromium & WebKit way.
|
|
event.returnValue = 'Leave?';
|
|
// Firefox way.
|
|
event.preventDefault();
|
|
});
|
|
</script>
|