Hello Friends Please tell me How to hide PDF tools in HTML, i am waiting for your Reply.. Thanks in advance
What do you mean by PDF tools, and what do you mean by hide? You want to send the user a PDF file and not allow printing, saving, etc? That's done when you create the PDF file, you can't do it with code on the site. It's the document that can't be printed, saved, etc., it's not an "all documents on this site" kind of thing.
If the PDF plug-in version supports passed in control options, you can hide all the toolbar buttons by appending #toolbar=0 to the src.
If. If not you can't. And the site can't control the plugin the user is using, so it's very bad practice to write code assuming that the user has made the choice you hope he made - for anything, not just as far as choice of PDF plugin is concerned. (That's why all Javascript should have fallback code - you can't even assume that the user has Javascript enabled.)