I try to make a image download button that works correctly in all browsers(ie8+) and i try this codes:
<!-- don't work with IE and Safari -->
<div>
<a href="/image.jpg" download>Download</a>
</div>
and
<!-- this code don't work at all -->
<div>
<iframe width="1" height="1" frameborder="0" src="/image.jpg"></iframe>
Download
</div>