Execute Script When Page Has Unloaded in HTML



The unloaded attribute triggers when a web page has unloaded. You can try to run the following code to implement unloaded attribute in HTML −

Example

<!DOCTYPE html>
<html>
   <body onunload = "display()">

      <h2>Tutorialspoint</h2>
      <h3>Simply Easy learning</h3>

      <script>
         function display() {
            alert("Bye!");
         }
      </script>

   </body>
</html>
Updated on: 2020-03-03T07:37:55+05:30

135 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements