I\'m interested in building a small offline webapp and I\'m looking for some advice. Here\'s the basics of what I want it to do
Link to the localstorage apis
Yes localstorage would be perfect for you application. It would allow your application to have no need to connect to a server at all. Keep in mind that local storage does have maximums on the amount of data that can be stored.
EDIT:
Using JSON.stringify()
on can convert complex javascript objects to json which can be storage and retrieved with ease inside of local storage.