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 Status
HTML Living Standard Living Standard

Browser compatibility

DesktopMobile
ChromeEdgeFirefoxInternet ExplorerOperaSafariAndroid webviewChrome for AndroidFirefox for AndroidOpera for AndroidSafari on iOSSamsung Internet
afterprint eventChrome Full support 63Edge Full support 12Firefox Full support 6IE Full support YesOpera Full support 50Safari Full support 13WebView Android Full support 63Chrome Android Full support 63Firefox Android ? Opera Android Full support 46Safari iOS Full support 13Samsung Internet Android Full support 8.0

Legend

Full support
Full support
Compatibility unknown
Compatibility unknown

See also