Tagged Questions
0
votes
1answer
77 views
HTML5 `favorite` offline caching
I'm currently building an application with which you can create playlists of song lyrics and cache them for use offline. You can also cache your favorites (JSON array).
Now, because the favorites are ...
0
votes
0answers
68 views
Appcache for blogs/dynamic content
I'm in the process of optimizing our mobile site and i'd like to allow our users to view content offline. HTML5 Appcache seems like the best option for this but all use cases that i've seen show ...
1
vote
0answers
74 views
Google Chrome looses cached data at system failure
I am building an intreactive information kiosk for public use. Making it a web app in Chrome. It need to work offline. My solution is using the browsers application cache. Problem: Chrome looses all ...
0
votes
1answer
436 views
IE10 - unable to prevent cache for iframe
I have modal boxes on a page are opening dynamic content in iframes.
<a href="popup.php?id=52" rel="modal">Link 1</a> (fixed id)
<a href="popup.php?id=53" rel="modal">Link ...
5
votes
1answer
443 views
Did Apple remove HTML5 cache offline viewing from iOS devices?
I made an HTML5 "webapp" for my company back in April, and at that point, I was able to place is on the homescreen of iPhones and iPads, and save it as a bookmark for offline viewing (Android and BB ...
4
votes
1answer
207 views
Appcache for dynamic site
I am trying to use HTML5 Appcache to speed up my web-mobile app by caching images and css/JS files. The app is based on dynamic web pages.
As already known – when using Appcache the calling html page ...
0
votes
1answer
110 views
Issue in using application cache
Hi I'm trying to use application cache .As it is documented I'm getting a prompt like :
This website() is asking to store data on your computer for offline use .
with 3 options :
1.Allow 2. Never ...
0
votes
1answer
256 views
AppCache all images in a folder
I have a web client that gets its data (including images) from a web service.
I'm already able to cache the web client so the user can use it even if he/she is offline. However I'm not able to cache ...
0
votes
1answer
113 views
Update appcache manifest file version automatically
I have enabled application cache for my web application. Now i need to make sure on every time i generate the war or deploy the application, cache manifest file's version get updated automatically. So ...
1
vote
2answers
193 views
Use the locally stored version of the page instead of another request
I'm workin' on a web project where performance is a very important issue.
EDIT:
The situation:
I wanna add some details about the user's workflow:
The user visits the welcome page of my website ...
1
vote
1answer
771 views
html5 appcache adding/removing specific files
Say I have a simple appcache manifest that looks like:
CACHE:
# v1
# images
images/one.jpg
images/two.jpg
images/three.jpg
I then use some server side method to update the manifest to:
CACHE:
# v1
...
2
votes
1answer
371 views
html5 appcache load order
I'm creating an app with a number of videos/large images that will use appcache to handle the preloading of them.
Is there a way for me to control what order those assets get loaded? For example, I ...