How to force a pdf download automatically?

download, pdf

Solution

use the download attribute inside your `<a>` tag

`<a href="content/file.pdf" download > pdf link </a>` `<a href="content/file.doc" download > doc link </a>`

Problem

Is there any way to force the user's download-manager to start a download for .PDF instead of showing the .PDF in a new window/tab?

Original source

Related problems