- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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>
Advertisements