Tagged Questions
The web-storage tag has no wiki summary.
6
votes
1answer
95 views
When should I use html5 sessionStorage?
I've learned difference between sessionStorage (persist during session) and localStorage (persist forever if not deleted).
I can see that localStorage can be used as better version of cookie. (more ...
3
votes
1answer
308 views
Wrapper functions for IndexedDB
I need to build an offline HTML5 web app for a iPad/tablet device where the user can download a dataset (table of data) from the server and store it on the device. The user could then disconnect from ...
2
votes
1answer
49 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?
2
votes
1answer
313 views
HTML5 Client Storage: WebSqlDatabase vs. WebStorage vs. Indexed Database
I have some questions concerning the abilities of client storage in HTML5. From what I've found so far there are three different possibilities:
WebSQLDatabase: Supports client site SQL-Tables, which ...
2
votes
1answer
1k views
HTML5 Web Storage Cleared when Browser Clear Cache?
i wonder if HTML5 Web Storage will be cleared when browser clears its cache? if it did, many ppl like me may lose data if i accidentally clear cache? or like in this comment ...
Since HTML5 local ...
1
vote
4answers
97 views
determine whether Web Storage is supported or not
I need to verify that Web Storage API is supported and available (it may be disabled due to security issues).
So, I thought it would suffice to check whether the type sessionStorage or localStorage ...
1
vote
1answer
114 views
HTML5SQL retrieve records from web databases using SELECT statements
I am creating an iphone webapp using jquery mobile/phonegap and I am trying to use web database. I have about 700 records to insert and want to have a separate file with the sql statements to create ...
1
vote
3answers
143 views
Webapp able to work offline !
I have to design an webapp that has the capability of working offline.
So there are many working points that in normal mode work online , connected to a central server.
Now there are moments when ...
0
votes
2answers
48 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: ...
0
votes
2answers
87 views
How to do online/offline sync with a ruby on rails application?
Is there any way to do offline syncing with a rails project?
In other words, our client is using their site to show a photo gallery, but they need to be able to do it without an active internet ...
0
votes
0answers
9 views
How to access web storage data from server?
I am using web storage to store web client data.
I dont know how to access data from browser as well as from server ?
0
votes
1answer
106 views
HTML5 database table - check if empty
I'm attempting to write a function to determine if an html5 websql db table is empty. Code is below. I put alerts in there to see what is happening. When this function runs the alert at bottom ...
0
votes
1answer
30 views
Sync personal development project between machines
I'm working on a project which I develop in python and which I wish to work on from a windows machine at work, my mac at home, and my linux laptop. I am the only one who works with this project and ...
0
votes
0answers
51 views
HTML5 web storage support [closed]
Possible Duplicate:
HTML5 web storage abstraction libraries
From what I've read of web storage in HTML5, there are a number of different storage options with varying support across ...
0
votes
1answer
141 views
HTML5 web storage abstraction libraries
From what I've read of web storage in HTML5, there are a number of different storage options with varying support across different browsers.
Are there any popular libraries for abstraction of web ...
0
votes
2answers
44 views
How to store a list in the web sql or any type of storage in the browser
How to store a list in the web sql or any type of storage in the browser,
I have found three ways to store data in the browser, i.e. localstorage,session storage and web sql with html5 so i need to ...
0
votes
2answers
223 views
Save user input on HTML page using HTML5 web storage
I am creating a crossword puzzle web app that pulls XML data from a server, parses the data with javascript and builds the puzzle on the page using the [canvas] tag. When a user selects a clue and ...
0
votes
0answers
121 views
HTML5 webdatabase storage javascript code + Rails project
All,
i am trying to create web database(HTML 5 web db api) database and insert data in to the tables.
I am wondering that its working in normal javascript and run html file directly from the browser ...
0
votes
1answer
230 views
Sample Ext Js state provide?
Can anyone tell me sample of Ext JS provider, a specially if it intends to use any HTML 5
storage mechanism.
Thanks.
0
votes
2answers
482 views
synchronizing executeSql in Safari (WebKit) Web Sql database
WebKit (Safari 4+ is my focus) has a feature called Web SQL.
Web SQL is specified in the W3C draft
Currently only the asynchronous flavor is supported.
I have a situation where I want to synchronize ...
0
votes
3answers
89 views
Free webstorage that is accessible via code
I have a desktop app for personal use and I would like it to be able to synchronize it's data with the net.
Since it's not trancational, I figured a solition migth be to (de)serialize the lot to a ...