notepadlet
notepadlet copied to clipboard
Printing problem in Chrome
When trying to print in Chrome (OS X El Capitan) the print prompt just disappears before I have even a chance to do anything. So printing is not working at all!
Does window.print();
work from the console?
Well, that does work.
So that means the onblur
event is just firing up when you press print
. So to overcome this issue while using (for now) you should be able to print with these steps:
- Press
shift
+tab
- Press
cmd
+p
This seems to skip the onblur
event that refreshes the page (at least for me).