From 0d4afbda06d054a6471a025c43c6305bb9e1ac4e Mon Sep 17 00:00:00 2001 From: "martin.duveborg" Date: Mon, 22 Sep 2014 10:50:23 +0200 Subject: [PATCH] Fixed issue when printing in IE11 --- jQuery.print.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/jQuery.print.js b/jQuery.print.js index a064962..4f6afca 100644 --- a/jQuery.print.js +++ b/jQuery.print.js @@ -128,7 +128,11 @@ setTimeout(function() { // Fix for IE : Allow it to render the iframe w.focus(); - w.print(); + try { + w.document.execCommand('print', false, null); + } catch(e) { + w.print(); + } setTimeout(function() { // Fix for IE if (iframeCount === 0) {