<body onbeforeunload="return myFunction()">
<h1>The beforeunload Event</h1>

<p>Reload this page, or click on the link below to invoke the onbeforeunload event.</p>

<a href="https://codingislove.com">Click here to go to codingislove.com</a>
    
<script>
function myFunction() {
  event.preventDefault();
  return "";
}
</script>

</body>

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.