On an commerce site, the user needs to be able to print an order.
I can do this with a popup window:
w = window.open();
w.document.write(data);
w.print();
w.close();
However, what should I do if the user has a popup blocker in place?
Is there another way of printing I should provide (ie, not using a popup) or should I assume that the user will enable the popup if he really wants to print? Google Maps seems to be using a popup window for printing so this seems to be an acceptable way of addressing this.
So the question is, how do I avoid the popup blocker issue?
Greg