I think the answer to this is almost certainly "no", because I've done a little testing and searching around, but is there any trick to detect whether window.print() even might work from inside a page (i.e., from JavaScript)? I know that even on a desktop/laptop it's never going to be possible to know whether there's a printer configured on the system, for example, but at least the browser will put up a print dialog.

My Android phone has a window.print() function but it (unsurprisingly) doesn't do anything.

Again I'm asking mostly so there's a good question on the topic at SO :-)

link|improve this question

79% accept rate
feedback

3 Answers

up vote 2 down vote accepted

Unfortunately it looks like a no. The window.print() function is not part of the EMCAScript specification. This means that there';s no requirement for it to be part of the JavaScript language, and no proper documentation for its implementation. It's undefined behaviour and so testing for it looks very difficult.

Sources:

EDIT:

Cute little script I wrote to test my browsers, just checks the print function exists and then asks to print:

if(window.print) {
    if(confirm('I can print. Would you like to?'))
        window.print()
}
link|improve this answer
Yes that's what I had pretty much decided. Well maybe now this will serve as a good point of reference too :-) – Pointy Feb 13 at 22:52
1  
I also wrote this to test my browsers: jsfiddle.net/zdY4d/4 – Jivings Feb 13 at 22:53
@Jivings add the fiddle to your answer... – powtac Feb 13 at 23:03
@Pointy Could perhaps make this community wiki and suggest people add any browsers that don't support the print function? – Jivings Feb 13 at 23:16
feedback

The beforeprint and afterprint events may help, but I'm not sure about browser support.

Edit: Webkit does not support them

link|improve this answer
feedback

The print() method is synchronous. This makes it possible to do the aftermath in order to decide wether a print dialog has been shown

var start = +new Date();
window.print();
var delta = + new Date() - start;
console.log(delta);
if (delta > 100) { console.log('It worked'); }
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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