-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've got a table that you can edit, and I've got a simple code saving that list when you're done with editing it.
(the tables have the contenteditable on)
The problem I've stumbled upon is that if I double click on enter, the table gets divided into two separate tables with the same ID. This causes…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
How do I get to list down the stored records in the for loop?
Basically I want it to list down the records like this:
'<div id="record_' + number + '">' + localstorage value + '</div>'
The number in the class should add 1 every record, e.g. 1, 2, 3, 4 every record it lists down, and…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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 hack2.example.com all have their own 5 MB databases)? And is there anything in the standard that specifies whether…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I write a simple iPhone web app using HTML5's localStorage.
Tests on a 2G device show the data does not persist after an iPhone reboot.
This is a test code:
<html>
<head>
<meta name="viewport" content="height=device-height, width=device-width, initial-scale=1.0, maximum-scale=1…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
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?
>>> More