Answer by Roger Roelofs for Javascript Event Handler for Print
Firefox 6 now supports beforeprint and afterprinthttps://developer.mozilla.org/en/Printing#Detecting_print_requests
View ArticleAnswer by user13276 for Javascript Event Handler for Print
We also found that you can do a print-only style with the following:<style type="text/css">@media print { div { overflow:visible; } }</style>
View ArticleAnswer by EndangeredMassa for Javascript Event Handler for Print
Different Style SheetsYou can specify a different stylesheet for printing.<link rel="stylesheet" type="text/css" media="print" href="print.css" /><link rel="stylesheet" type="text/css"...
View ArticleAnswer by danieltalsky for Javascript Event Handler for Print
In IE there are the nonstandard window.onBeforePrint() and window.onAfterPrint() event listeners. There isn't a non-IE way to do it that I know of, however.What kinds of changes are you trying to make?...
View ArticleAnswer by matt h for Javascript Event Handler for Print
IE has onbeforeprint and onafterprint
View ArticleJavascript Event Handler for Print
I am trying to alter style at print-time:Is there an event in javascript that you can listen for for when file>>print is called? What is it? Also - is there a handler for when printing is...
View Article