Reputation: 1070
I have many PDF links, When I click any one of them it will be open in a new tab and there are many options in PDF reader.
Basically I want to disable
the download button only.
Or let me explain it more, Basically a client will upload their policy in PDF but that should be show in normal view such as Image or convert into text not in PDF.
Upvotes: 1
Views: 7337
Reputation: 39
use #toolbar=0&navpanes=0
<iframe src="http://docs.google.com/gview?url=http://www.tutorialspoint.com/php/php_tutorial.pdf&embedded=true" style="width:600px; height:500px;" frameborder="0">
</iframe>
Output :
it will work. you can get the complete list from here, http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf
Upvotes: 0