WindowEventHandlers.onbeforeprint

 

Summary

The property onbeforeprint sets and returns the onbeforeprint event handler code for the current window.

Syntax

JavaScript
window.onbeforeprint = event handling code

Notes

Some browsers (including Firefox 6 and later and Internet Explorer) send beforeprint and afterprint events to let content determine when printing may have occurred. You can use this to adjust the user interface presented during printing (such as by displaying or hiding user interface elements during the print process).

The event beforeprint is raised before the print job dialog appears.

Specification

Browser compatibility

Feature Firefox (Gecko) Chrome Internet Explorer Opera Safari
Basic support 6.0 no (Yes) no no
Feature Firefox Mobile (Gecko) Android IE Mobile Opera Mobile Safari Mobile
? ? ? ? ? ?

See also

  • window.print
  • window.onafterprint
  • Printing
  • It's able to do equivalent things in Webkit-based browser with matchMedia('print')
  • JavaScript
    var mediaQueryList = window.matchMedia('print');
    mediaQueryList.addListener(function(mql) {
        if (mql.matches) {
            console.log('onafterprint');
        };
    });
 

License

© 2016 Mozilla Contributors
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-us/docs/web/api/windoweventhandlers/onbeforeprint

API DOM printing Property