Skip to content

Latest commit

 

History

History
35 lines (29 loc) · 766 Bytes

index.md

File metadata and controls

35 lines (29 loc) · 766 Bytes
title date draft toc headercolor onderwerp
Streepjescodes
2024-09-29 20:53:27 +0200
false
true
teal-background
Javascript

Ooit afgevraagd hoe streepjescodes werken?

<script src="main.js"></script> <script> //ask before reload source: https://stackoverflow.com/questions/10311341/confirmation-before-closing-of-tab-browser window.onbeforeunload = function (e) { e = e || window.event; // For IE and Firefox prior to version 4 if (e) { e.returnValue = 'Sure?'; } // For Safari return 'Sure?'; }; </script>
<script> var app = Elm.Main.init({ node: document.getElementById('myapp') }); </script>