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>