<html>
<body>
<form>
<textarea></textarea>
<input type=submit value="Save"></input>
</form>
</body>
</html>
is there a way to take the above LOCAL file and add javascript so that I can type "Hello World" into the text area, click save and have the file overwrite itself so the file changes to:
<html>
<body>
<form>
<textarea>Hello World</textarea>
<input type=submit value="Save"></input>
</form>
</body>
</html>