Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iphone, ipad, android javascript print()

I'm trying to make my website iphone/ipad/android friendly.

Now, is there any way to make the javascript .print() function work on any of these devices? Couldn't find an answer on this subject.

Looking forward to your replies, Thank You in advance.

like image 255
michaeltintiuc Avatar asked Feb 21 '23 09:02

michaeltintiuc


1 Answers

The function window.print() will work if you are using iOS 4.2 or later because that version adds AirPrint support.

Android phones don't seem to have native support for printing yet however you might be interested in reading about Cloud Print. However that solution requires a "cloud enabled" printer.

like image 105
MMM Avatar answered Mar 05 '23 11:03

MMM