Created
January 28, 2016 20:38
-
-
Save portokallidis/ccdf30e0b517c3b11015 to your computer and use it in GitHub Desktop.
This file contains 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 obj = {a: 123, b: "4 5 6"}; | |
// <a id="downloadButton" href="" download="filename.json">download JSON</a> | |
document.getElementById('downloadButton') | |
.href="data:text/json;charset=utf-8," | |
+encodeURIComponent(JSON.stringify(obj)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment