Questions tagged [offline-browsing]
128 questions
5
votes
1 answer
Open offline html file programmatically in windows phone 7
I am building an application in windows phone 7. I have some user guide in HTML. I want to use a web-browser to open these files whenever user touches Help menu. But I don't know how to get the local URLs of these files. Could you help me…

Nguyen Minh Binh
- 23,891
- 30
- 115
- 165
4
votes
2 answers
Do I need to add the files who are hosted on CDN inside in manifest file HTML 5 manifest file for offline caching?
Do I need to add the files who are hosted on CDN inside in manifest file for offline caching?
This a example maniefest file
CACHE MANIFEST
#This is a comment
CACHE
index.html
style.css
NETWORK:
search.php
login.php
FALLBACK:
/api…

Jitendra Vyas
- 148,487
- 229
- 573
- 852
4
votes
0 answers
Download complex 3D JS/Canvas webpage for offline
I'm attempting to download a truly offline version of this interactive 3D model of a home, as seen on this webpage: https://my.matterport.com/show/?m=bDbFD5mSEb5&play=1&lang=en
Because it loads dynamically, all the basic offline downloaders won't…

gavanon
- 1,293
- 14
- 15
4
votes
4 answers
Flutter Making an Image.file() image into an ImageProvider() for zoomable photos
I've created an app that downloads a bunch of information for off-line use, much of which are photos. In the app, I'd like to use a widget that allows me to have a pan/zoom effect, but the ones I've found don't seem to play well with Image.file()…

William Terrill
- 3,484
- 4
- 31
- 41
4
votes
1 answer
What are the security/privacy concerns with MHTML (.mht) files?
My customer is currently using MHT files for storing offline representations of browsed web pages. The files are saved and later viewed in Internet Explorer.
When viewing the files we would like to be sure there is absolutely no network activity to…

Udi
- 29,222
- 9
- 96
- 129
4
votes
2 answers
How to make my single-HTML web page available offline in Chrome?
I'm hosting a single-HTML web page (all design elements included in the .html file itself) on my webserver, and I'd like to make it available for my users when they are offline. It should work like this: when the user is online, he visits my web…

pts
- 80,836
- 20
- 110
- 183
4
votes
0 answers
How to save webpage from UIWebview for Offline Browsing
Does anyone have idea, how to download HTML page from UIWebview along with the resources - for offline storage, so user will be able to access web page, even when there is no internet.
It should be achieved without ASIWebPageRequest, since…

NightFury
- 13,436
- 6
- 71
- 120
4
votes
0 answers
Chrome vs Firefox XHR request differences
While playing with XHR requests I found interesting thing in making XHR requests from 2 major browsers - Google's Chrome and Mozilla's Firefox.
Request was simple HEAD request to www.google.ba:
var xhr = new XMLHttpRequest();
xhr.open('HEAD' ,…

Ivan Pandžić
- 598
- 5
- 20
4
votes
1 answer
Browser loads assets twice after a dynamically added base html tag
To handle relative paths in a website I use a tag added in the of every page.
All the resources loaded through a relative-like path in the documents are properly fetched and shown, however the browser (Chrome and Firefox in my trials)…

Maxiride
- 187
- 8
3
votes
2 answers
3
votes
3 answers
Javascript Read Text File Offline
Currently I use this code to read a txt file with words and perform some operations. However, this particular code requires the html to be deployed on a server. Is there any workaround where I can replace this code with something else to read the…

Kerry
- 1,015
- 1
- 9
- 11
3
votes
3 answers
Website that runs without Internet?
allaboutrajini site tells you to stop your internet connection to enter the site.I guess it determines whether the connection is on or off with javascript or something like gmail and qoura do.
But how can they store so much of flash animated content…

tarashish
- 1,945
- 21
- 32
3
votes
2 answers
Authentication of user for offline app
I have simple jQuery Mobile site created using asp.net mvc 2 and uses basic forms authentication to grant access to the site.
The application is a simple work diary that allows a regional manager to view details about the current issues assigned to…

fluent
- 2,393
- 4
- 22
- 32
3
votes
1 answer
How to turn off HTML5 Offline caching
I've been using HTML5 Offline caching on my website for a while and for some reasons I am considering turning it off. To my surprise it doesn't work.
This is how I've implemented HTML5 Offline caching.
In my index.html I give path to the manifest…

Jayesh
- 51,787
- 22
- 76
- 99
3
votes
2 answers
What is new in HTML 5 "offline web application" which was not already available in the all browsers?
What is new in HTML 5’s “offline web applications” feature which was not already available in all browsers?
Offline caching is the job of the browser — how did it become a job of HTML?
A web cache is a mechanism for the
temporary storage…

Jitendra Vyas
- 148,487
- 229
- 573
- 852