Our organization has a public website. I am a developer working on this issue found by users. We have print button on our website, when clicked that button, the print preview generate blank page.
This button is working fine in IE, FireFox, but not in Chrome. There are lots of people say this issue and fixes, I have tried, not working.
function Popup(data) {
var mywindow = window.open('', '', '');
mywindow.document.write('<html><head><title>Communication</title>');
mywindow.document.write('<link rel="stylesheet" href="/Content/NewSite.css" type="text/css" />');
mywindow.document.write('<link rel="stylesheet" href="/Content/CandidateDashboard.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.document.close();
mywindow.print();
--
--
Chromium Discussion mailing list: chromium...@chromium.org
View archives, change email options, or unsubscribe:
http://groups.google.com/a/chromium.org/group/chromium-discuss
---
You received this message because you are subscribed to the Google Groups "Chromium-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to chromium-discuss+unsubscribe@chromium.org.