I am fairly new at Web Applications and I have a web application where the user can essentially create an array of objects based upon form input. I thought a very interesting feature would be if the web application had the ability for, upon the user clicking a "save" button, could download a formatted special file which would contain the contents of the array.
Along with this "save" feature, there would be a "load" feature which would load a specially formatted file which would first erase the contents of the existing array and fill the array with the contents described and parsed from the file loaded.
I have looked up some information regarding this process including information regarding HTML5's local storage feature, but it seems like the process of saving files to the client's computer from a browser application requires jumping through some loops to achieve due to security reasons.
Are there some workarounds to achieve this feature? Or would they seem to a bit too involved and complicated given the scale of application that this is.
localStoragecould be perfect for you. Best thing is, there are no hoops to jump through or red tape to wade through to get it to work. – Elliot Bonneville Apr 17 '12 at 23:50