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
In Opera, the print dialog will only display if the page has loaded (see the link in cjrh's comment), so maybe the window you're dynamically opening has not finished loading when you try to print it. Try replacing this line:
printWindow.print();
with this line:
printWindow.onload = printWindow.print;