Ask to close popup (modal)

So maybe you have seen that sometimes Websites (or rather the browser) asks you “do you really want to close this page?” or something similar.

Bildschirmfoto 2024-05-07 um 20.25.35
Sorry it’s in german, but you should get the idea…
.
.
.

Well if you want to recreate that, it’s quite easy:

Just add this code in your Dashboard > Settings > Custom Code:

<script>
  window.onbeforeunload = function() {
    return 'Are your sure you want to leave this page?'; //this will be ignored by most browsers, since they have their own message.
  };
</script>

Then set it to load on every page.

2 Likes