I'm trying to create a simple application, where the user enters some text in the a text field, clicks save, and then that prompts a save file dialog for them to save the text written in the text field to a .txt document.
From all the googling and looking at SO questions, I keep getting answers like
- Use FileSaver.js. (Isn't supported for IE versions <10).
- You can't save files for security reasons.
- Here's an HTML5 solution. (Not useful for me - I have to make this app for IE7 and FF11).
The question is - why is this basic functionality not allowed/not native?
I get that you don't want your browser covertly saving data, but an explicit save file dialog box seems harmless.