I want to print a dive content using javascript and jquery and using following code:
n = window.open('M80Print.aspx', '_blank', 'status=no,toolbar=no,menubar=yes,height=400px,width=640px');
n.document.write($('#<%=Print.ClientID %>').html());
n.print();
It works in Fire Fox and Chrome but print dialog is not opened in IE.
I use IE8. wht to do?
IE requires you to open the document before writing to it then close it before printing:
Tested for IE9 should work with IE8 as well.