beforeunload.html (360B)
1 <!doctype html> 2 <html> 3 <head> 4 <meta charset="utf-8" /> 5 </head> 6 <body onbeforeunload="return beforeUnload()"> 7 <a id="navigateAway" href="./hello.html">Click Me</a> 8 <a id="navigateAway2" href="./hello2.html">Click Me</a> 9 <script> 10 function beforeUnload() { 11 return "Please don't leave."; 12 } 13 </script> 14 </body> 15 </html>