25. Alert exit popup

In some cases, you can set a warning to ask again from the browser when customers accidentally turn off the landing page tab. You can use our code to insert landing page:

<script type="text/javascript">
    window.onbeforeunload = function() {
        return "Are you sure you want to leave?";
    }
</script>

Insert the code into HTML/Javascript: Builder -> setting -> HTML/JavaScript -> Before tag </body>

Last updated