I've application to open popup window to print page.

function printHTML(urlPath) {
 var printPopUp = window.open(urlPath,null,"height=600,width=777,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
 printPopUp.print();
}

This script is working fine in IE, but in firefox/chrome. print() function is overlapping window.open, as a result print dialog is showing first while screen is still loading. I need to close print dialog in order to render page properly then print manually.

Please advise.

link|improve this question

33% accept rate
are the urls that you will be printing in the same domain? – Kinlan Apr 13 '10 at 9:39
yes, same domain – Adelave Apr 13 '10 at 10:05
feedback

3 Answers

up vote 0 down vote accepted

As indicated in your comment, the urls to print are on the same domain. You cannot access the content of the other windows so you will have to set up some code on the popped up window that will call the opener to tell it it has opened.

popup.html

<script>
function onLoad() {
  if(window.opener && window.opener.popupLoaded) {
    window.opener.popupLoaded();  
  }
}
</script>
<html onoad="onLoad();">

main.html

function popupLoaded() {
  popup.print();
}
link|improve this answer
feedback

Run print after the page is loaded, e.g.

printPopUp.onload = function() { printPopUp.print() }

(not tested)

link|improve this answer
in Chrome at least that will not work. – Kinlan Apr 13 '10 at 9:39
it doesn't work in FF3+Chrome – Adelave Apr 13 '10 at 10:10
feedback

I suggest calling window.print() in the page being loaded into the pop-up rather than in the opener.

link|improve this answer
can't because this is global script, its shared on all pages. If i'm doing that way, i need to duplicate code on all pages. – Adelave Apr 13 '10 at 10:05
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.