Download textarea contents as a file using only Javascript (no server-side)
This may be what you are looking for: http://thiscouldbebetter.wordpress.com/2012/12/18/loading-editing-and-saving-a-text-file-in-html5-using-javascrip/ It uses the browser’s download dialogue, but supports only FF and Chrome, and maybe more browsers now? function saveTextAsFile(textToWrite, fileNameToSaveAs) { var textFileAsBlob = new Blob([textToWrite], {type:’text/plain’}); var downloadLink = document.createElement(“a”); downloadLink.download = fileNameToSaveAs; downloadLink.innerHTML = “Download File”; if (window.webkitURL != null) { // Chrome allows … Read more