[HTML] [attributo evento] onunload

onunload (attributo evento HTML) si attiva quando l’utente chiude la finestra del web browser (cfr. pure l’evento HTML onpagehide).

tag

<body>

Sintassi

<body onunload = "[script]">

Esempi

<script>
function Funzione() {
    confirm("Stai per chiudere questa finestra: confermi?");
}
</script>
<body onunload="Funzione()">Chiudi questa finestra.</body>


Chiudi questa finestra.

Contenuti correlati

  • CSS
  • HTML
  • JavaScript
  • jQuery
  • PHP
  • SQL
  • WORDPRESS

Fonti esterne

attributi evento html, html

Related Articles

0 Comment

Rispondi