'Download Audio/Video file using iframe
Currently my iframe is showing the Video/Audio instead of downloading it.
Zip files work fine though.
Thats the code:
<iframe width="0" height="0" frameborder="0" src="https://example.com/downloads/1.mp3"></iframe>
Any Solutions?
Solution 1:[1]
if you want to make it download why are you using a iframe? you can simply do this
<a href="https://example.com/downloads/1.mp3" download="proposed_file_name">Download</a>
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | PMArtz |