Open In App
Related Articles

HTML | onafterprint Event Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The onafterprint attribute works when a page has started printing, or if the print dialogue box has been closed. This attribute is used together with the onbeforeprint attribute.
Applicable: 

Syntax: 
 

<element onafterprint = "script">

Attribute Value: This attribute contains single value script which works when onafterprint event attribute called. This attribute is associated with <body> tag.
Note: This attribute is new in HTML 5.
Example: 
 

html




<!DOCTYPE html>
<html>
    <head>
        <title>title attribute</title>
        <style>
            body {
                text-align:center;
            }
            h1 {
                color:green;
            }
        </style>
    </head>
    <body onafterprint="myFunction()">
        <h1>GeeksforGeeks</h1>
        <h2>onafterprint attribute</h2>
        <!-- The script run when page will print -->
        <script>
            function myFunction() {
                alert("This document is now being printed");
            }
        </script>
    </body>
</html>

Output: 
 

Supported Browsers: The browser supported by onafterprint attribute are listed below: 
 

  • Chrome 63
  • Edge 12
  • Internet Explorer 9
  • Firefox 6
  • Safari 13
  • Opera 50

 

Last Updated : 16 Aug, 2022
Like Article
Save Article
Similar Reads
Related Tutorials