How to make the Save as Dialog box in html design help with Javascript.
I have one img tag and I would like to save the image to local drive via button click.
Thanks
How to make the Save as Dialog box in html design help with Javascript.
I have one img tag and I would like to save the image to local drive via button click.
Thanks
 
    
    You can use
<a href="your_image.jpg" download="/path/to/image">  Download This Image</a>  
eg:
<a href="myimage.jpg" download="images/gallery/1.jpg">Download This Image</a>
