Jason Day

Results 115 comments of Jason Day

Thanks, I'll look into it.

Without code, it's difficult to help. Some common issues with bootstrap is that bootstrap using CSS classes on the `` element. Ensure you have the following printThis config set to...

When `debug` is set to `true` the print won't execute. This option is for debugging only.

@patrickhrastnik that's not good news. In the interim/short-term, the ugly hack for MSIE would potentially work everywhere. We'll need to do some research on our side to determine the scale...

Spitballing: I wonder if a `try/catch` approach would work to step through the various methods of printing and trigger the correct one for browser, OS, etc. That said, the issue...

Interesting thread: https://stackoverflow.com/a/21336448/335514 for additional research

@patrickhrastnik - take a look at this line from another printing [plugin](https://github.com/DoersGuild/jQuery.print/blob/master/jQuery.print.js#L42): ``` // Fix for IE11 - printng the whole page instead of the iframe content if (!frameWindow.document.execCommand('print', false,...

Let me do some digging today and come up with a couple of tests. I appreciate your help in this.

So, one immediate hack would be to change these lines (https://github.com/jasonday/printThis/blob/master/printThis.js#L278): ``` if ($iframe.hasClass("MSIE")) { // check if the iframe was created with the ugly hack // and perform another...

I think this is similar to the issue in #193 I believe what's happening in each scenario is that the print iframe is being removed before the print executes. On...