I\'m the author of printThis, a jquery plugin for printing.
https://github.com/jasonday/printThis
I have a user that has brought up an issue, that I have bee
This answer has already been stated in the original question UPDATE, but I wanted add a more succinct answer to the original question related to getting around the SCRIPT70 Permission denied error (I ran into this on IE11/Win7 with JQuery 3.2.1).
Instead of $('').appendTo($('body'))
Do this:
var $iframe = $('');
document.body.appendChild($iframe[0]);
Answer taken from here: https://bugs.jquery.com/ticket/13936#comment:28