Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative to Window.Print()

I want to create a print button so that when it is pressed, it prints the whole webpage. I am currently using Window.print() of javascript. But I ran into error; when ever i press the print button more than once, the link stops working. What is the problem with it ? Is there an alternative to this in jquery or any other ? I am using grails 1.3.7. Thanks

like image 690
Eddard Stark Avatar asked Oct 09 '22 02:10

Eddard Stark


1 Answers

An alternative way to window.print() is

document.execCommand('print');
like image 55
Murhaf Sousli Avatar answered Oct 12 '22 19:10

Murhaf Sousli