Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<!doctype html>
<html lang="de">
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
</head>
<body>
<h3>Schliesse das fenster jetzt</h3>
<script>
$(document).ready(function() {
$(window).bind('beforeunload', function() {
return 'Seite wirklich verlassen?';
});
});
</script>
</body>
</html>