0
votes
1answer
33 views

How to save data from a form with HTML5 Local Storage?

I have a form that makes logging into a website but not in mine and I want them to be saved form data in my web with HTML5 local storage. But not how. Any idea? My form is this: <form ...
0
votes
0answers
16 views

alert previous alert statement through loca storage

I'm trying to do a check in my code so that it checks if the user pressed the button on the previous page load. If so, I want it to alert the values that they entered. If not, I would like it so that ...
0
votes
3answers
62 views

local storage using html5

I need to store the values that the user enters in each of the boxes through html5. When the user refreshes the page, it should keep the values in each of the text boxes. I had a friend tell me that ...
0
votes
1answer
24 views

xRTML Storage - Non supported languages

does anyone now how to use xRTML storage in other languages than javascript, nodejs or java? I would like to save data in storage using .Net C#. Thank you.
0
votes
1answer
138 views

Developing Android application having Image and audio

I am in process of designing an Android App :a poetry application, which would a. display the poetry b. audio controls - start, stop, restart, move for poetry There are currently collection of 25 ...
0
votes
1answer
148 views

Expiry of sessionStorage

I am building a form in which i have to store the data in html5's sessionStorage i don't know where the sessionStorage expires. Can anyone tell me about the expiration time of the sessionStorage
1
vote
1answer
272 views

HTML5 to display uploaded image untill next one is uploaded?

I'm not sure if I should use HTML5 storage for this or not. My question is about how I can accomplish the following: Think of a wall in a museum with an empty frame. I want the user to upload an ...
2
votes
3answers
908 views

Using HTML5 Database API

I'm developing a web-app using phonegap/cordova 2.2 and want to store data in sql type database but it seems that as html5 is not yet documented and there are three competing approaches for saving ...
1
vote
0answers
195 views

Can I store more than 5 MB in HTML5 local(offline) storage?

Can I store more than 5 MB in HTML5 local(offline) storage? I referred the following sources, http://diveintohtml5.info/storage.html ...
0
votes
0answers
62 views

HTML5 Offline Storage possibilities list

I am interested in HTML5 offline storage possibilities. Is there are a list of all kinds of client-side storage possibilities? If yes, where can I find it? HTML5 Localstorage HTML5 Sessionstorage ...
0
votes
1answer
194 views

cross browser html5 offline data storage?

I am currently looking to write a web app in HTML5. It is my first HTML5 web app. The main feature of this app is its offline feature. When I mean offline, it will be something like ...
0
votes
1answer
81 views

HTML5 session storage on restore browser session in Firefox

I am seeing strange behaviour when using session storage on my current site in Firefox. When a user navigates to the site a session storage value is set like so: sessionStorage.setItem(cacheKey, ...
3
votes
1answer
3k views

Web SQL Storage Limitations in Chrome and Android?

So I am writing a web app that needs to store ~40MB of offline data in a offline Web SQL database. It needs to work in Chrome (desktop), Safari (desktop and mobile) and android's browser. Now I know ...
1
vote
1answer
116 views

How can I update contents on an HTML5 web application

I'm going to write an HTML5 app based on contents. I planning to store the contents into the local Database. Now, how can I schedule the updates?
0
votes
1answer
32 views

How do I send my game that I created using HTML 5 to mu SD card on my phone? [closed]

How do I send my game to my SD card after its downloaded?
-1
votes
2answers
150 views

What is best/good way to store objects in javascript? [closed]

Like title says, what is best or good way to store objects in javascript? var stop = lines[i].split('~'); newStop = new Object(); newStop.index = (parseInt(i) + 1); newStop.packages = stop[0]; ...
1
vote
1answer
998 views

html5 to store greater than 50 mb worth of data?

I am building a mobile app that must work in Blackberry, iPhone and Android phones. I am building this mobile app in HTML5, CSS and JQuery Mobile. Then I will use PhoneGap to allow the code to run ...
2
votes
3answers
1k views

can't setting a array or object to html5 web storage?

i'm new to html5 web storage setting to a web storage is easy. sessionStorage.someKey = 'someValue'; but when i setting a array or object to a key like sessionStorage.name = ['abc','def']; typeof ...
2
votes
2answers
278 views

Reading “binary” characters from a file in JS?

Now when I say binary, I mean ghjkl54╞←‼╝454┴ and not 10101110. I wanna load a tilemap in JavaScript, but I don't want to rewrite my map editor, written in Java, which exports maps as binary files. ...
4
votes
1answer
182 views

Are HTML attributes good for storing data?

(Please disregard any security concerns you may have with this approach, I have a already taken more than enough precautions to make sure that there are no blatant vulnerabilities with this approach) ...
1
vote
0answers
240 views

add an image into HTML5 persistant storage

Is there any possible way to save an image, into HTML5 persistant storage? Doing all work required to break the image into - say, a byte array, client side?
2
votes
0answers
586 views

Display image with requestFileSystem and toUrl() function

I made an application who use requestFileSystem. Everything works fine. Add a new image and store it in an persistent local file system. Does anybody know how to display an image with toUrl() ? ... ...
0
votes
2answers
324 views

html5 apps for tablets: possible to load images from device's filesystem?

I created a simple html file that loads some images from my local hard-drive (ubuntu). It is enough to put <img src=/home/user/directory/image.jpg></img> Now I need to know if it is ...
3
votes
2answers
476 views

Best Practise for storing svg icons?

I am building a dynamic navigation menu in HTML 5/CSS 3 with all the new good stuff. Some menu nodes will have an svg icon, some not. In some views the menu levels are rendered differently depending ...
1
vote
3answers
476 views

Is there a wrapper for HTML5 sessionStorage that provides a good compatability implementation?

We would like to use the HTML5 sessionStorage (or something like it) in a new project but you can't rely on it on some browsers. There's this project (http://code.google.com/p/sessionstorage/) which ...
0
votes
1answer
135 views

HTML5 Ipad Error while downloading large numbers of pictures

I want to develop an offline html5 website with a large number of pictures (10 000). The problem is that during the downloading process when safari ask me to increase the cache limit it stop the ...
0
votes
1answer
388 views

How to download binary/video files from html5 Storage or JQuery using Local Storage

I have been reading so much articles about JQuery, html5 LocalStorage but I could not get what I want yet. This is my doubt: I have some url that are part of a video (the format does not matter) and ...
0
votes
2answers
2k views

HTML5: “local storage” and “sqlite storage” Limits

I have seen posted limits on client-side storage: LocalStorage: sizes are 5MB Sqlite storage: 5MB expandable by user request. First, are these numbers still correct? ...and how about "sessions ...
9
votes
2answers
2k views

Can session storage be safe?

I would like to use session storage to query user data in the database only once and then simply use JS to retrieve it, so I'm thinking about using session storage. My question is next, is that safe? ...
1
vote
2answers
651 views

Can I use the same HTML5 browser storage, across different domains?

There are a couple of different approaches for choosing an HTML5 browser storage (IndexedDB, Web Storage), but from what I read in the spec, the "same origin policy applies". Is there a way to keep ...
0
votes
2answers
361 views

Upload files to the cloud from web application

I need to upload files from an HTML 5 application (used in desktop/mobile/tablet device)(there's no server side) to an online storage. Any storage would be fine, still, using a free service would be ...
13
votes
2answers
3k views

Local Storage, Session storage, Web storage, web database and cookies in HTML5

HTML5 local Storage HTML5 session storage HTML5 web storage HTML5 web database Cookies What is the difference between these concepts? Which case should I use one in particular? Which are the ...
2
votes
1answer
944 views

html5 Web SQL storage using different js files

I have a first.js which I open the database: $(function(){ initDatabase(); }); function initDatabase() { try { if (!window.openDatabase) { alert('Local Databases are ...
0
votes
3answers
185 views

What can you use the HTML5 storage feature for?

Not sure if I understand HTML5 storage correctly. Is it just kind of a an advanced cookie store where user data can be persisted without a particular schema - like a key/value store? If so, what ...
1
vote
2answers
531 views

State of HTML5 in mobile browsers

What is the state of HTML 5 on the mobile browser ? I'm particularly interested in the offline storage possibilities (localStorage, Database storage with SQLish interface). Android > 2.0, database ...
0
votes
1answer
328 views

How to access a stored HTML5 database from the Objective C part of my app

I'll try to be as clear and direct as possible in the following description: I have to develop an iPad-App that consists of four parts. Three of them have to be written with Objective C, but for the ...
2
votes
1answer
1k views

Html 5 Local Storage not persistent in firefox

I made a simple function localStorage.setItem('foo', 'bar') alert(localStorage.getItem('foo')); If I run it like this it works. If I remove the first line after I run it once and I let only this ...
0
votes
2answers
3k views

Caching a large number of images in a jQuery/HTML5 application

I am building a web application in jQuery/HTML5 which will run in Webkit-based browsers on touchscreen kiosks. There are a large (thousands) number of images which the application uses, which I need ...
0
votes
1answer
107 views

HTML5 Sequential execution

I have created a web storage for product details (productId, name, quantityonhand) and have populate records into it from the server. I have to validate whether the required quantity is available to ...
1
vote
1answer
370 views

How can one download the contents of an HTML5 web database to the client?

I am looking for a way to save the contents of an HTML5 web database to a local file for persistence and for loading back into the web application. I'm using Firefox 3.6.8 with the HTML5 features to ...
2
votes
3answers
2k views

Multiple storages using localStorage

Is it possible that the same name used can have many different values stored separately and to be shown in a list? E.g.: function save() { var inputfield = ...
15
votes
4answers
10k views

How to synchronize HTML5 local/webStorage and server-side storage? [duplicate]

Possible Duplicate: Best way to synchronize local HTML5 DB (WebSQL Storage, SQLite) with a server (2 way sync) I'm currently seeking solutions for transparently and automatically ...
80
votes
2answers
35k views

Best way to synchronize local HTML5 DB (WebSQL Storage, SQLite) with a server (2 way sync) [closed]

I am developing a mobile web application (for iPhone) with a local database (using html5 webstorage) so my app is still usable when the user is offline. This is working perfectly, but I want to save ...