window.onafterprint |
if ($('button.print_check').length) {
var afterPrint = function() {
if ($(".income").length) {
$(".income").focus();
form.income_check();
}
};
//firefox
// window.onbeforeprint = function() {
// console.log("Functionality to run before printing.");
// }
// //firefox
// window.onafterprint = function() {
// console.log("Printing completed...");
// afterPrint();
// }
//google chrome and etc http://www.danolsavsky.com/intercepting-print-requests-with-javascript/
if (window.matchMedia) {
var mediaQueryList = window.matchMedia('print');
mediaQueryList.addListener(function(mql) {
if (!mql.matches) {
afterPrint();
}
});
}
window.onafterprint = afterPrint;
window.print();
}
});
| Комментировать | « Пред. запись — К дневнику — След. запись » | Страницы: [1] [Новые] |