Execute a Script After 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: 2020-03-03T12:31:48+05:30

241 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements