Skip to content

Instantly share code, notes, and snippets.

@Jagathishrex
Created April 22, 2020 02:20
Show Gist options
  • Save Jagathishrex/cdaeaf608116c772404de8f537254a8b to your computer and use it in GitHub Desktop.
Save Jagathishrex/cdaeaf608116c772404de8f537254a8b to your computer and use it in GitHub Desktop.
var download = function(href, name){
var link = document.createElement('a');
link.download = name;
link.style.opacity = "0";
document.append(link);
link.href = href;
link.click();
link.remove();
}
download(png, "image.png");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment