<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("#p1").mouseenter(function(){
alert("Вы вошли в p1!");
});
});
</script>
</head>
<body>
<p id="p1">Войдите в этот параграф.</p>
</body>
</html>