I'm trying to make simple button which when is clicked will download image. Currently when I click it is open image on blank page where you should click "Save as.."
How can I "force" the browser to download it?
This is current image and button
<img src="{{ $thumb }}" class="img-responsive">
<a type="submit" download="{{ $thumb }}" href="{{ $thumb }}" class="btn btn-primary">
Download Image
</a>
I've tried:
download="{{ $thumb }}"
Also
download="{{ $thumb }}" target="_blank"
Also tried to put the <img...>
tag inside <a href..>
tag and still doesn't work.