Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
