There are a lot of solutions to this that only work in IE (using ActiveX), but is there any way to write a text file using Javascript and Chrome?
EX (put name in txt file):
function myFunction(){
//code to add name to .txt file
}
<p> Enter name </p>
<input type=text id=name>
<input type=button value=submit onclick='myFunction()'>