HTML5 Local storage/Cookies

Hi! Is there a way to load data from local storage or cookies on an HTML5 build?

You can use html5.run(“some JavaScript”) to call any JavaScript on the page.

3 Likes

Don’t sys.save and sys.load do this? Or is that technically different than browser local storage?

Data is written to IndexedDB, which is designed for larger amounts of data. Local storage/Web Storage is used for small amounts of data.

2 Likes