So this seems unlikely purely from a security point of view, but I need to cover my bases. Has anyone come across a method for saving an image in a browser to the user's gallery? In this case, I'm specifically talking about from site served javascript (not phonegap).
While I know you can tap and hold on the image to save, I'd love a button for our less technically inclined users.
The phone ecosystem is diverse, so any phone would work for me. I'm just curious if it's possible.
Some attempts:
Works on desktop, links through on phone (Android)
<a href="logo.png" download="logo.png">
<img src="logo.png" alt="">
</a>
Hangs when clicked (Android)