<a class="download-btn" download="" href="https://example.com/test.pdf" id="download-pdf" target="_blank">Download </a>
I have simple above download link html5 code it's not working in mozila and working fine in chrome
<a class="download-btn" download="" href="https://example.com/test.pdf" id="download-pdf" target="_blank">Download </a>
I have simple above download link html5 code it's not working in mozila and working fine in chrome
use this
<a class="download-btn" download="filename.pdf" href="your file directory name put here/filename.pdf" id="download-pdf">Download </a>
please don't use website url in href tag
wrong (https://example.com/folder name/filename.pdf )
right (../folder name/file name.pdf)