Reputation: 49
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.
Upvotes: 1
Views: 5185
Reputation: 839
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.
Upvotes: 2