I am developing a site in Laravel and in that I am providing a functionality to print certain pages. I am using window.print()
for that. It's working fine on desktops , but its not working on mobiles and ipad ? Any help would be great. Thanks in advance.
Asked
Active
Viewed 4,431 times
0

Michał Turczyn
- 32,028
- 14
- 47
- 69

Shivang Trivedi
- 39
- 3
- 6
-
Possible duplicate of [Using window.print() or alternative on Android devices](https://stackoverflow.com/questions/26684190/using-window-print-or-alternative-on-android-devices) – Rafik Tighilt Jul 09 '18 at 10:21
1 Answers
1
The problem here is that of Browser Compatibility. Most likely the browser being used in the mobiles and iPad do not support the window.print
method. You can check the Browser Compatibility for window.print
method here
For alternatives to window.print
you can refer to this answer.

Aayush Sharma
- 779
- 4
- 20