Execute a script after the document is printed in HTML?


Use the HTML onafterprint attribute to execute a script after the document is printed or it is printing.

Example

You can try to run the following code to implement onafterprint attribute −

<!DOCTYPE html>
<html>
   <body onafterprint = "display()">
      <script>
         function display() {
            alert("Success!");
         }
      </script>
   </body>
</html>

Updated on: 03-Mar-2020

141 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements