Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Exemple de gestionnaire d’événements</title> <script type="text/javascript"> function myAlert() { alert("Je suis un gestionnaire d’événements...."); return; } </script> </head> <body> <span onmouseover="myAlert();"> Placez votre souris ici pour voir un alerte. </span> </body> </html>