Quiero capturar el evento de refrescar y redireccionar a otra pagina pero no funciona nada de lo que intento
<?php
include 'instagram.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<?php
$inst = new Instagram($_GET['code']);
?>
<script
src="https://code.jquery.com/jquery-2.2.4.min.js"
integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44="
crossorigin="anonymous">
</script>
<script>
$(document).ready(function(){
$(window).on('beforeunload', function(){
alert('Are you sure you want to leave?');//todavia no redirecciono es que no consigo que salga el alert
});
});
</script>
</body>
</html>