Skip to content

Instantly share code, notes, and snippets.

@mzo84
Created November 27, 2016 07:45
Show Gist options
  • Save mzo84/a8632036503f6850e288ab52cedaeb5a to your computer and use it in GitHub Desktop.
Save mzo84/a8632036503f6850e288ab52cedaeb5a to your computer and use it in GitHub Desktop.
var link = document.createElement('a');
link.href = 'images.jpg';
link.download = 'Download.jpg';
document.body.appendChild(link);
link.click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment