Can consult: Download pdf with javascript
TORRENTS DOWNLOAD OVER VPN CONNECTION | |
DEAD RISING 2 CASE ZERO PC DOWNLOAD | |
DOWNLOAD VIDEO FROM IPHONE TO WINDOWS 10 | |
RASHEED IBN RASHEED FREE DOWNLOAD |
Download pdf with javascript - opinion, interesting
javascript - (HTML) Download a PDF file instead of opening them in browser when clicked
The solution that worked best for me was the one written up by Nick on his blog
The basic idea of his solution is to use the Apache servers header mod and edit the .htaccess to include a FileMatch directive that the forces all *.pdf files to act as a stream instead of an attachment. While this doesn't actually involve editing HTML (as per the original question) it doesn't require any programming per se.
The first reason I preferred Nick's approach is because it allowed me to set it on a per folder basis so PDF's in one folder could still be opened in the browser while allowing others (the ones we would like users to edit and then re-upload) to be forced as downloads.
I would also like to add that there is an option with PDF's to post/submit fillable forms via an API to your servers, but that takes awhile to implement.
The second reason was because time is a consideration. Writing a PHP file handler to force the content disposition in the header() will also take less time than an API, but still longer than Nick's approach.
If you know how to turn on an Apache mod and edit the .htaccss you can get this in about 10 minutes. It requires Linux hosting (not Windows). This may not be appropriate approach for all uses as it requires high level server access to configure. As such, if you have said access it's probably because you already know how to do those two things. If not, check Nick's blog for more instructions.
-