print() not working on opera browser

后端 未结 4 752
眼角桃花
眼角桃花 2021-01-07 04:21

I am trying to open a print dialog box in Opera browser using javascript. The print() is working fine in all browsers but in opera it doesn\'t work. My p

4条回答
  •  悲哀的现实
    2021-01-07 04:52

    I had the same problem and this was the only solution that actually worked for me:

    window.addEventListener('load', function(e) { window.print(); }, false);
    

    Version 11.60
    Build 1185
    Platform Win32
    System Windows XP

提交回复
热议问题