Window: afterprint event

The afterprint event is fired after the associated document has started printing or the print preview has been closed.

Bubbles No
Cancelable No
Interface Event
Event handler property onafterprint

Examples

Using addEventListener():

window.addEventListener('afterprint', (event) => {
  console.log('After print');
});

Using the onafterprint event handler property:

window.onafterprint = (event) => {
  console.log('After print');
};

Specifications

Specification
HTML Standard
# event-afterprint

Browser compatibility

BCD tables only load in the browser

See also