How can we print bulk documents from sharepoint site through browser. We have to print the documents through browser means at client side not at server side. The printer is not in the server network. User will select multiple projects (that carries various documents) and click on print button. We have to silently print all the documents in client's printer.
Using this code we can print the document:
<link rel="Alternate" media="print" href="TextFile2.doc" />
<a href="TextFile2.doc" onclick="window.print(true); return false;">print</a>
But the problem with this is it will ask to click on print again and again.