The HTML5 (web) storage spec is a standardized way of providing larger amounts of client-side storage and of more appropriately "partitioning" session storage and locally persistent storage.
0
votes
0answers
15 views
Location of the implementation of Phonegap's local storage in iOs and Android
In the API of phonegap they say this about storage
For devices that don't have storage support, PhoneGap's implementation should be compatible with the W3C specification.
If HTML5-webstorage ...
2
votes
0answers
24 views
How Long Does HTML5 Web Storage API keep data? [duplicate]
I developed mobile web and hybrid applications with PhoneGap. I am using HTML5 Web Storage very often in my application.
I am wondering if there is a time limit for keeping data? How long do browsers ...
-1
votes
0answers
42 views
Using Html 5 Web Storage in a Phonegap App - Persistent?
I'm was thinking of using local storage instead of using web sql for my phonegap application. All I'm doing is storing key/values pairs, so local storage should work perfectly: W3C Web Storage
Local ...
0
votes
0answers
18 views
HTML5: Putting a JsonResult in the Application Cache
I have placed a URL in my cache manifest that references an MVC controller action of type JsonResult:
CACHE:
/controller1/action1/id1 # returns JsonResult
This action is correctly called from ...
1
vote
1answer
69 views
Webstorage in Windows 8 html5/JS apps
This has been a hard question for me to track down. I am creating a windows 8 HTML5/JS app to be deployed into the windows 8 marketplace. I am using the construct2 game engine to generate the html5/js ...
0
votes
2answers
146 views
What is the maximum size of an indexedDB database in IE10
So far I have:
Firefox: unlimited
Safari: 50MB (and uses web sql instead of idb)
Chrome: unlimited
Opera: unlimited
IE: ???
0
votes
1answer
81 views
Web Storage API and Javascript - Undefined Error
I've been trying to get style changes on my html page to get stored using this API. Im pretty new at this so im not exactly sure what the problem is. The style changes work when I select the menu ...
1
vote
1answer
54 views
Getting CSS Values from elements
I need to use the web storage api to store style changes of the elements on one page.
I actually have no clue how to do this but I thought I'd start by getting the CSS attribute that's been changed ...
0
votes
1answer
81 views
Saving locally javascript changes
Im trying to figure out if it's possible and how I could save changes made to a page using javascript to a browser.
For example: I have a toggle which hides a menu. So I hide my menu and leave the ...
0
votes
1answer
82 views
HTML5 Web Storage API to save Javascript changes
I have an HTML5 page which has three buttons. These buttons change various things on my page. For example the first will hide a div, the second is used to change video player to a random color and the ...
0
votes
0answers
54 views
Best way to save Web page settings for mobile devices?
I am going to be modifying a mobile Web page that offers various services.
I wish to make it so that the user can change what services can be accessed via settings that would be stored on the user's ...
0
votes
1answer
39 views
how to set a variable inside of a callback function in JavaScript?
i am testing Phonegap Web Storage for a small project:
var listsCount = 0;
tx.executeSql("SELECT * FROM list WHERE id = ?", [id], successGetList, errorGetList );
function successGetList(tx, ...
1
vote
3answers
64 views
Can user modify the values of variables stored in sessionStorage
I'm using client-side JavaScript to store some variables using Web Storage, more specifically, the sessionStorage.
But I'm not sure whether a user can simply modify the value of such variables in any ...
1
vote
1answer
45 views
Is web storage preferable over cookies for storing sessionId?
Is it more secure to hold the sessionId at client side (to avoid logging in each time) using local storage or session storage rather than using cookies?
0
votes
0answers
93 views
How to update Object store in Indexdb
I am new to indexdb,i am able to store data,fetching,filtering data from indexdb,but now i want to update objectStore of index db.it means when user modify search criteria from screen,first i checked ...
1
vote
2answers
53 views
Save EventListener in webstorage
Is it possible to save EventListeners to webstorage?
var entity = document.createElement("a");
entity.addEventListener("click", function(e) {
play(path, this.id, "audio");
e.preventDefault();
...
0
votes
1answer
136 views
Retrieving JSON data in web storage not working [duplicate]
Possible Duplicate:
Storing Objects in HTML5 localStorage
I'm trying to store JSON data, name & phonenumber given in two text fields and then later(after page refresh) retrieve and ...
2
votes
1answer
106 views
html5sql - Can't seem to connect to my DB
I'm using html5sql.com for doing html5 DB stuff :o)
- Really a great module...
However, I got stuck!
At my index.html/index.js I create my database and tables in it.
try {
...
-1
votes
1answer
119 views
How can I write this webstorage javascript code without jQuery? [closed]
I'm new to javascript. I'm trying to rewrite this code in javascript without using the jQuery. Is it possible to do that? How can I start? Isn't jQuery javascript as well?
var Contacts = {
...
-1
votes
1answer
92 views
Is Web Storage enabled by default on supported browsers?
Given this support chart, can I assume that all the supporting browsers listed there enable this feature by default?
If not, what would be the simplest way to check if SessionStorage is available?
2
votes
1answer
224 views
SQLite DELETE transaction not working when grabbing value from Array
This is driving me crazy.
I have a message queue that I'm using a local storage web DB to store these messages when the device is offline and when there is an internet connection it sends out these ...
0
votes
3answers
121 views
How to local storage expand/collapse CSS settings
I'm looking for way to use local storage to remember the CSS settings of a expand/collapse element
so for my JavaScript looks like this (which grabs the id and handles the expand/collapse)
function ...
0
votes
1answer
114 views
What's the best way use caching data in js on client side?
My application receives data from the another server, using API with limited number of requests. Data changing rarely, but may be necessary even after refresh page.
What's the best solution this ...
2
votes
1answer
174 views
HTML 5 Web Storage - Local/server comunication
I need load localStorage data right on my homepage. But when the page loads, the PHP/SQL instructions are already processed.
There's a way to process it before the server interation and use the ...
3
votes
1answer
227 views
HTML5 web storage: can different websites overwrite each other’s data on a user’s computer?
I have a few questions regarding the concept of HTML5 storage. I went through the w3c specification, books and tutorials on the same, but still I am a bit unclear about certain concepts:
Assume that ...
1
vote
1answer
98 views
Is the offline store in qooxdoo compatible with all browsers and on local filesystem?
I have a qooxdoo based application which runs from the local file system.
Now, I have seen that IE does not support offline store for local files in general (i.e . accessing the application with ...
7
votes
2answers
223 views
HTML5 Cache manifest weird bug with more content
I'm slowly but surely going completely crazy with the HTML5 web storage and application cache.
Here is my example:
http://daviddarx.com/stuffs/work/custom/54/
The cache manifest is valid and tested ...
0
votes
2answers
522 views
How to get objectstore from indexedDB?
I have indexedDb on my app for web storage.
I would like to get the store form the below code.
var store = myapp.indexedDB.db.transaction(['tree_nodes'],'readwrite').objectStore('tree_nodes');
It ...
7
votes
1answer
2k views
HTML5 sessionStorage limits?
A few questions regard HTML5's sessionStorage:
Does the 5MB limit on localStorage include sessionStorage? (ie. is it really a 5MB limit on the WebStorage API)
If not does sessionStorage have a ...
4
votes
4answers
1k views
Javascript API wrapper around web storage?
Is there a cross-browser jquery like wrapper API abstraction over the various web storage systems available?
0
votes
1answer
68 views
webstorage & serialisation of the object returned by the new jquery detach method
I'm developping a small web client application using jquery
The App at the first page of session contains only the app menu which trigger ajax requests, display data received in a new tab (within the ...
0
votes
1answer
48 views
how to get updated images from web?
I'm building an app that is pulling images from the web to display in an imageView.
This will be a fashion store catalog and as such, the products will update very often.
How can I make the ...
0
votes
1answer
2k views
Insert javascript value into websql database
I'm trying to insert the total values of various select lists/radio buttons into a websql database.
The initital form inserts correctly, but everything breaks once I try and add the total variable. I ...
0
votes
1answer
179 views
phonegap/web database errorcodes Explanation?
I want to show correct errors to the user if a transaction with a web database (I´m using Phonegap) fails. In the Error-Callback I ask for the error.code value to determine what went wrong.
The ...
0
votes
1answer
130 views
Blackberry Webworks delete webstorage
How can i delete webstorage data?
I am using HTML5 db to store app Data for my webworks blackberry app. The problem is when i delete the app the app data is still there. If i install the app again ...
1
vote
0answers
109 views
View Content of iPhone's Web Storage Database
It seems like there isn't anything on the web on this. In Android I can access the database file by browsing the filesystem in Logcat. However, I don't know how to view the content of my database on ...
0
votes
1answer
119 views
Javascript - Open new URL and transfer data based on two form values
I'm completely new to javascript, but I'm trying to create a beta form for a focus group test. The end product will be professionally developed, but I need a short term, functioning solution. It only ...
1
vote
1answer
629 views
Is AppCache = Application Cache = Web Storage's LocalStorage?
I'm getting a bit confused by the (varied) terminology for HTML5 offline storage.
I think that AppCache is another name for Web Storage and you specify what will be stored offline via the Cache ...
0
votes
2answers
758 views
Access web storage from server side - possible?
I've stored some strings in web storage (session and/or local), and am wondering if it is possible to check for such stored strings on page load or init on the server-side (asp.net c# in my case)... ...
0
votes
1answer
80 views
Web-storage with html pages
I have created multiple html pages which i need to store using session storage (web storage) as in HTML5. I am not very clear what it is and how to implement it. Please help
10
votes
3answers
726 views
Most efficient way to store large arrays of integers in localStorage with Javascript
*"Efficient" here basically means in terms of smaller size (to reduce the IO waiting time), and speedy retrieval/deserialization times. Storing times are not as important.
I have to store a ...
9
votes
2answers
929 views
How is HTML5 WebStorage data physically stored?
In using the HTML5 WebStorage functionality, I know that certain browsers, like Chrome, have developer tools that enable users to browse thru the contents of their WebStorage for debugging and ...
1
vote
2answers
1k views
localStorage accessible only after refresh
I am developping a mobile web application using Sencha Touch 2.0.0.RC but I don't think my problem is related to this framework.
Here is the workflow :
At startup, app.js is loaded and checks if a ...
0
votes
1answer
173 views
html5 localstorage accessiblity
In html5 if I create an new local storage key called mykey from a website www.a.com, will I be able to access mykey from another site, say www.b.com ?
...
0
votes
1answer
175 views
Will Varnish cache work with HTML5 Web Storage?
I use Varnish to cache content in different web applications (most of them based on Django and Drupal). Those familiar with Varnish will know that it doesn't cache pages with cookies, unless you do ...
2
votes
1answer
189 views
how to save persisting data in symbian using the phonegap?
I am working on an application for different platforms: BB, iPhone, Android and symbian. This application has to store some data and I want this application to work offline so I am using the local ...
-3
votes
1answer
43 views
Where can I read about the technical implementation of web databases in Google Chrome?
I've read up on the standards regarding WebSQL, IndexedDB, and localStorage, but where can I read up on how a specific browser (Google Chrome in this instance) actually implements these features?
I ...
0
votes
2answers
458 views
HTML5SQL.js: Uncaught TypeError: Cannot read property 'sql' of undefined
Im using HTML5SQL.js in Google Chrome but I only get this error:
Uncaught TypeError: Cannot read property 'sql' of undefined
Please take a look at this script that I'm using: ...
5
votes
2answers
1k views
Viewing html5 storage in Chrome and Firefox
How can I view HTML5 web storage in Chrome and Firefox? What are the best tools available?
1
vote
3answers
619 views
Where the sessionStorage and localStorage stored?
Where are sessionStorage and localStorage stored on the client's computer?
Could you tell me the path?
Thanks in advance.
