Store data locally using HTML and JavaScript

client-side, database, html, javascript, jquery

Solution

finally I found a solution for it! I am using a jQuery plugin called: twFile (http://jquery.tiddlywiki.org/twFile.html). It uses an activeX FileSystemObject - it works great on IE9.

Problem

I have a small LAN with some computers. I'm looking for a way to build a dynamic HTML webpage that uses JavaScript to store some data locally (can't use server side - only client side). The webpage will be stored on a network drive shared with all the computers. I wish to do that using a file, maybe an XML file or something similar that will be loaded using JavaScript and then saved again after some changes. The data must be shared with all the computers on the LAN. How can I do this?

Original source

Related problems