-1

I have this:

<a href="localhost/pdf/data.pdf"> Download this </a>

and when i click on this in the browser the file opened.I need to make this download directly without open it.Thanks for help

2 Answers2

1
<a href="localhost/pdf/data.pdf" download> Download this </a>

to find this answer you just can use google by the way and don't need to open a new question

TypedSource
  • 708
  • 4
  • 12
1

You can use the download attribute

<a href="localhost/pdf/data.pdf" download> Download this </a>
KornholioBeavis
  • 2,402
  • 2
  • 19
  • 26