El atributo onbeforeprint funciona cuando una página está a punto de imprimirse. El mensaje de alerta se muestra antes de que aparezca el cuadro de diálogo de impresión. El atributo onbeforeprint se utiliza con el atributo onafterprint.
Etiquetas admitidas
Sintaxis:
<element onbeforeprint = "script">
Valor de atributo: este atributo contiene un script de valor de atributo único y funciona cuando el documento está a punto de imprimirse. Este atributo es compatible con la etiqueta <body>.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title>onbeforeprint attribute</title> <style> body { text-align:center; } h1 { color:green; } </style> </head> <body onbeforeprint="myFunction()"> <h1>GeeksforGeeks</h1> <h2>onbeforeprint attribute</h2> <!-- The script run when page will ready to print --> <script> function myFunction() { alert("This document is ready to be printed"); } </script> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con el atributo onbeforeprint se enumeran a continuación:
- Chrome 63.0 y superior
- explorador de Internet
- Firefox
- Safari: no compatible
- Ópera: no compatible