Created
April 22, 2020 02:20
-
-
Save Jagathishrex/51a58b729348936d64e88c1cc732f432 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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