Reputation: 189
I linked a pdf like that:
<a href="mypdf.pdf" target="_blank">PDF</a>
and would like it to open/display in a new Tab. Instead, a new Tab is opened and the pdf is downloaded.
How can I achieve this?
Upvotes: 1
Views: 271
Reputation: 943510
The HTML you have is fine for the result you desire.
You also need to ensure:
Content-Disposition: attachment
Upvotes: 1