Tagged Questions

localstorage is a way to store several Mb (depending on browser) of data using javascript.

learn more… | top users | synonyms

129
votes
7answers
37k views

Storing Objects in HTML5 localStorage

I'd like to store a JavaScript object in HTML5 localStorage, but my object is apparently being converted to a string. I can store and retrieve primitive JavaScript types and arrays using ...
61
votes
12answers
41k views

Which browsers support html5 offline storage?

Essentially, I wanted to run a piece of demo code from W3c Offline Webapps page. It looks like that: var db = window.openDatabase("notes", "", "The Example Notes App!", 1048576); Firefox 3.5, IE8 ...
22
votes
7answers
2k views

HTML5 Local Storage fallback solutions

I'm looking for javascript libraries and code that can simulate localStorage on browsers that do not have native support. Basically, I'd like to code my site using localStorage to store data and know ...
19
votes
2answers
4k views

Local Storage vs Cookies

I want to reduce load times on my websites by moving all cookies into local storage since they seem to have the same functionality. Is there any pros/cons (especially performance-wise) in using local ...
19
votes
2answers
7k views

Max size of localStorage values?

since the localStorage (currently) only supports strings as values and in order to that the objects have to be stringified (stored as JSON-string), before they can be stored, i wondered if there is a ...
19
votes
2answers
9k views

Limit of localstorage on iPhone?

I'm wondering what's the limit of localstorage HTML 5 on iPhone? I read that it was like 5 Mb, but I'm surprised is so little. Any ideas?
18
votes
4answers
7k views

how to store an Array in localStorage?

If i didn't need localStorage, my code would look like this: var names=new Array(); names[0]=prompt("New member name?"); This works, however I need to store this variable in localStorage and its ...
16
votes
3answers
6k views

Firefox addon to view/edit/create localStorage data?

Is there an addon that allows you to view, edit, localStorage information? If there is and it works as an extension of Firebug I will be extremely happy. Something like Google Chrome's similar to ...
16
votes
5answers
10k views

HTML5 localStorage restrictions and limits

HTML5's localStorage databases are usually size-limited — standard sizes are 5 or 10 MB per domain. Can these limits be circumvented by subdomains (e.g. example.com, hack1.example.com and ...
15
votes
1answer
3k views

Chrome extension: accessing localstorage in content script

So, i have an options page where the user can define certain options and it saves it in localstorage: options.html Now, i also have a content script that needs to get the options that were defined on ...
14
votes
4answers
5k views

Calculating usage of localStorage space

I am creating an app using the Bespin editor and HTML5's localStorage. It stores all files locally and helps with grammar, uses JSLint and some other parsers for CSS and HTML to aid the user. I want ...
13
votes
2answers
199 views

How to resume a broken upload in HTML5

I am trying to add resume functionality to html5 file uploader. I need to be able to resume after browser was closed (and reopened) and I lost the file object, I do not want the user to drag/open the ...
13
votes
1answer
2k views

Backbone.js able to do rest and localstorage?

I have been experimenting with the localstorage module for Backbone.js (https://github.com/jeromegn/Backbone.localStorage). As I understand it this overloads Backbone.sync and therefore stops backbone ...
13
votes
2answers
2k views

IndexDB, WebSQL in 4 Months

I've got a bit of a problem, I'm about to start a 4-6 month project which will need offline support. AppCache is awesome and accepted as the standard but the big browsers are still undecided about ...
13
votes
5answers
8k views

Mobile Safari 5mb HTML5 application cache limit?

It's becoming evident in my testing that there's a 5mb size limit on Mobile Safari's implementation of HTML5's application cache. Does anyone know how to circumvent or raise this? Is there some ...
12
votes
4answers
1k views

How to sync chrome extension options

I've made a Chrome extension with an options page. The data is saved in localstorage and works just fine. It doesn't sync the localstorage though, just the extension. I can not find an API at ...
12
votes
4answers
6k views

Do Chrome extensions have access to local storage?

Is it possible to store data in a way that will be accessible after a browser restart in the context of a chrome extension?
11
votes
4answers
666 views

Can you store JavaScript and CSS files in localStorage to improve the performance of an online web app?

I'm working on a web application, which acts pretty much like a native application for both iOS and Android. However the Javascript files (jQuery + my own) and the css file together are pretty large ...
11
votes
1answer
4k views

Android webview & localStorage

I have a problem with a webview which may access to the localStorage by an HTML5 app. The test.html file informs me that local storage is'nt supported by my browser (ie. the webview). If you have any ...
11
votes
1answer
431 views

HTML localStorage setItem and getItem performance near 5MB limit?

I was building out a little project that made use of HTML localStorage. While I was nowhere close to the 5MB limit for localStorage, I decided to do a stress test anyway. Essentially, I loaded up ...
9
votes
2answers
762 views

Best way to serialize/unserialize objects in javascript?

I have many js objects in my application, something like: function Person(age) { this.age = age; this.isOld = function (){ return this.age > 60 ? true : false; } } // before ...
8
votes
4answers
2k views

How can I request an increase to the HTML5 localstorage size on iPad, like the FT web app does?

If you open http://app.ft.com (the Financial Times mobile web app), you are prompted to add the app to your "home". After doing this, when you open the app, you are prompted again to allow the ...
8
votes
1answer
263 views

localStorage Isn't Accessible in Chrome's --single-process Mode

So I'm trying* to use Chromium's --single-process flag (yes, I know it's the most dangerous thing in the world, etc., no need for a lecture, thanks!) with localStorage, and for some reason, it looks ...
8
votes
5answers
5k views

Javascript + HTML5 localstorage

So I'm searching for a good crash course on localstorage and interacting with it in Javascript. I want to build a to-do list webapp with some extra functionality but it would be just for 1 user. I ...
8
votes
2answers
6k views

Get URL and save it | Chrome Extension

Basically on my window (when you click the icon) it should open and show the URL of the tab and next to it I want it to say "Save", it will save it to the localStorage, and to be displayed below into ...
8
votes
3answers
5k views

HTML5 on iPhone Safari - data stored by localStorage does not always persist. Why?

I write a simple iPhone web app using HTML5's localStorage. Tests on a 2G device show that data stored using localStorage does not persist after the Safari process is killed although the opened ...
7
votes
1answer
299 views

HTML5 Local Storage Not Persistent

Site is used on Samsung Galaxy Tab with the Gingerbread OS. Browsers used so far are the stock browser as well as Dolphin HD. Items in local storage seem to at random disappear when users go in and ...
7
votes
2answers
258 views

Javascript/HTML Storage Options Under File Protocol (file:\\)

I am developing an html application that is essentially a series of pages like a book. Within this application, I would like to store several JavaScript variables across pages. Think things like pages ...
7
votes
2answers
2k views

Android - Making Webview DomStorage persistant after app closed

I'm facing a huge problem developing an Android app which use a Webview to display datas. The website i'm using in the webview use localStorage API of HTML 5. To enable this feature i've set the ...
7
votes
1answer
1k views

Import/Export HTML5 localStorage data

I'm working on a simple TODO list app based on localStorage HTML5 feature: http://hamen.github.com/webnotes/ I'm wondering if it's possible to import/export data in some way. How could I provide an ...
6
votes
1answer
181 views

Conceptual problems with IndexedDB (relationships etc.)

Good evening folks! I'm writing a thesis about offline abilities of web applications. My task is to show the possibilities of offline storage through a web application with a server-side relational ...
6
votes
4answers
499 views

javascript string compression with localStorage

I am using localStorage in a project, and it will need to store lots of data, mostly of type int, bool and string. I know that javascript strings are unicode, but when stored in localStorage, do they ...
6
votes
4answers
704 views

Javascript on Rails

Just started to experiment with HTML5 features and really like the localStorage. And now I wonder if it makes sense to create some libraries which make life easier. Something which easily persists ...
6
votes
4answers
396 views

In HTML5, is the localStorage object isolated per page/domain?

Is the HTML5 localStorage object isolated per page/domain? I am wondering because of how I would name localStorage keys. Do I need a separate prefix? Or can I name them whatever I want?
6
votes
0answers
2k views

Does HTML5 localStorage have an expiry date? [closed]

Possible Duplicate: DOM Storage expires time If I add some data to the browser's local storage, does it expire naturally? I'm thinking of storing some data with HTML 5 local storage, but ...
6
votes
4answers
1k views

My Android HTML application is losing values stored in localStorage when it shuts down. Anyone else see this issue?

I have a native Android 2.1 application that hosts a web view. I load up a site that contains javascript that uses the LocalStorage feature. When the application is running localStorage works fine. ...
6
votes
1answer
632 views

Local Database Storage default data

I have developed application using HTML 5 Localstorage. How can I create a TABLE and populate 10000+ rows before initializing my HTML 5 enabled application. Please suggest a pattern.
5
votes
2answers
55 views

Backbone without a datastore

I am working on an offline javascript application. It needs to support IE7 so localStorage is not an option. That said, the app does NOT need to persist any information (if you refresh everything gets ...
5
votes
2answers
179 views

HTML5 Offline Data Storage Options

A developer buddy of mine just recently started at a new company and one of his tasks is to come up with a new web application that allows their users to work offline when their staff are onsite in ...
5
votes
1answer
100 views

LocalStorage, several Ajax requests or huge Ajax request?

I'm facing a really huge issue (at least for me). I'll give you some background. I'm developing a mobile web app which will show information about bus stations and bike stations in my city. It will ...
5
votes
2answers
675 views

JavaScript memory and HTML5 LocalStorage limitations on smartphones

I'm going to develop web application which should work on mobile devices (smartphones). In the application the operator will input some business data, and the operator will type this data also in ...
5
votes
1answer
129 views

How do I grab a single image and put it in localStorage?

How is it done, of course without external libraries, in regular HTML with JavaScript? This seems like it should be a simple one-liner. I'd like to just do: <script> ...
5
votes
3answers
1k views

HTML5: Thoughts on LocalStorage instead of WebSQL or IndexedDB?

I am working on an intranet web application that will be required to work offline, and so I've been investigating various local storage mechanisms and the browsers that support them. In my intranet ...
5
votes
1answer
1k views

How do you cache javascript on iphone Safari using html5 localStorage?

I am building a mobile website that uses the main jquery library and some js of our own. Our website is too big and has too much data to be a simple offline/online web app. We need web connectivity. ...
5
votes
7answers
595 views

Self hosted S3 alternative

I am looking for an S3 alternative which relies on a RESTful API, so that I can simply insert links such as http://datastore1.example.com/ID and they are directly downloadable. I have looked at RIAK ...
5
votes
2answers
2k views

Is it possible to use any HTML5 fanciness to export local storage to Excel?

Title says it all. This question is similar, but doesn't highlight any possibilities to export the data. Thoughts?
5
votes
1answer
580 views

how long does session storage on iPhone/iPad last?

If session storage lasts until the browser is exited, and iPhone/iPad does not exit mobile Safari, then how is sessionStorage handled? It would logically seem to be equivalent to localStorage, but it ...
5
votes
5answers
1k views

When do items in HTML5 local storage expire?

How many days data, stored in localStorage (as a part of Dom Storage HTML 5) available? Can i set expires time for data which, i puts to localStorage?
4
votes
2answers
68 views

When is localStorage cleared?

How long can I expect data to be kept in localStorage. How long will an average user's localStorage data persist? If the user doesn't clear it, will it last till a browser re-install? Is this ...
4
votes
3answers
43 views

how to tell is a string is a stringify'd JSON object

For anyone interested, I ended up building a "localstorage with expirations" script here, http://plugins.jquery.com/project/localcache What I'm doing: building an extension for Storage, so that the ...

1 2 3 4 5 12