How to implement a download link
function download(content, fileName, contentType) { var a = document.createElement("a"); var file = new Blob(content, {type: contentType}); a.href = URL.createObjectURL(file); a.download = fileName; a.click(); } download(jsonData, 'json.txt', 'text/plain');