Result Size: 300 x 150
x
 
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
  $("#p1").mouseleave(function(){
    alert("Пока! Теперь вы покидаете p1!");
  });
});
</script>
</head>
<body>
<p id="p1">Это параграф.</p>
</body>
</html>