130 questions
0
votes
0
answers
87
views
Create website that uses ES modules yet can be saved locally
Is it possible to create a single-page website hosted on static hosting (no custom headers etc.) that uses ES modules in external .js files and still can be saved as "Website, complete" in ...
0
votes
1
answer
125
views
How to avoid CORS issues when creating an Offline Website? [closed]
For the purposes of authoring HTML content that is intended to be viewed offline, for example:
when distributed on a USB thumb drive as documentation accompanying a physical product
as promotional ...
0
votes
0
answers
78
views
How can I make my website available offline through a Firefox extension?
I have a website that I write code for just to try out new things I learn about in web dev. I also want to get into Firefox extension creation, which I've already somewhat started with.
I know that ...
0
votes
1
answer
949
views
How do I deactivate the internet entirely with Firefox's developer tools?
I'm developing in Firefox and was asked today to test connectivity drops. How do I simulate this from the developer tools? All I can see in the network tab is speed throttling, ranging from GPRS to ...
0
votes
1
answer
683
views
How can I grab this website content without losing javascript content
I want to download this website
Abd i tried idm and httrack but didn't work for javascript content
http://websdr.uk:8074/
Anyone can help me to download this frequency streaming content,
Thank you
2
votes
1
answer
589
views
Service Worker Strategy for Cached First Scenario - Preloading Screen
I'm currently working on a small web app which should implement a cached first scenario (users download the wep app in a wifi provided base and then should be able use it offline outside)
I'm not ...
2
votes
1
answer
969
views
Offline PWA not behaving as expected on phones. Asks for connectivity despite caching all relevant files
I am trying to make an offline PWA planner targeted to phones and I have no need at all for user data or interaction with my home page after installation.
Everything works fine on my PC and Lighthouse ...
4
votes
0
answers
744
views
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 ...
5
votes
4
answers
13k
views
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 ...
1
vote
0
answers
299
views
indexedDB create multiple ObjectStore simultaneously
In my case, I am creating an offline web app. And want to store the API response in the IndexDB.
In a particular page, I have three to four APIs hitting the server, and I want to store all of the ...
-3
votes
2
answers
439
views
Social Media Icons disappeared on my Online Website while they appeared on my offline website [closed]
Social Media Icons disappeared on my Online Website while they appeared on my offline website:
Icons appear in yellow circles in my Offline Website
Icons disappear in yellow circles in my Online ...
0
votes
1
answer
71
views
How does the JavaScript ofline serviceworker example work?
The page at
https://googlechrome.github.io/samples/service-worker/basic/
has all the script you need for getting started with modern offline web pages. I spent many fruitless hours researching the ...
5
votes
1
answer
2k
views
ServiceWorker handling fetch events to URLs outside scope
My site registers a ServiceWorker which is scoped to only URLs beginning with /sw/....
/**
* Register the Service Worker.
*/
if ('serviceWorker' in navigator) {
navigator.serviceWorker
...
0
votes
0
answers
277
views
Viewing websites offline - how to get around unneeded ajax and jquery manipulation?
I am trying to view a webpage offline. The page is profoundly simple. It has a javascript video player that is interacting with an HTML5 video element. The video element specifies a url for a video. ...
0
votes
1
answer
259
views
How to save a webpage offline that is rendered with ember-cli-fastboot?
I am trying to save a webpage for offline viewing but not exactly having luck.
The page is fairly intricate, as it involves javascript audio and video players, HTML embedded media.
On top of that, ...
3
votes
1
answer
6k
views
How can I make "Service Worker" work in local network?
I am building app with Angular 6 and I want this app to work offline and I am using Angular 6 with Service Worker and I want to host this app in local server with IIS but I do not have HTTPS cert.
...
13
votes
5
answers
13k
views
Vuetify Offline Docs
I have started using Vuetify to add ui-components and use pre-defined layouts. The problem is that I have to look into online-docs every now and then, and requires me to be connected to internet ...
3
votes
2
answers
898
views
ODM/ORM for PouchDB in JavaScript
I'm interested in using PouchDB for a offline-first mobile application (Cordova) and I'm wondering if there is any leightweight ORM/ODM for PouchDB written in JavaScript. Couldn't find one.
Is PouchDB ...
6
votes
3
answers
3k
views
How to detect if browser is offline in 2018?
There used to exist offline.js for detection of a connection, but that project is no longer maintained. Also, the browser's 'navigator.onLine' property is notoriously unreliable.
What is the best/...
0
votes
1
answer
82
views
How to Check that how much offline storage has been Used
I am using offline storage and want to clear it when storage memory is full. All I want is to know that how to get used storage. I am using the following code to clear offline storage:
localStorage....
6
votes
2
answers
11k
views
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 ...
0
votes
0
answers
863
views
Selenium Webdriver--- Switch off the browser connection during test
I would like to know if it is possible to switch off browser connection during the test or is the webdriver can interact with browser console? Take chrome as an example, can I open the console during ...
0
votes
1
answer
374
views
Browser storage IndexedDB can be used for storing static files like css and some js file?
I want to made offline first web application.
If a network is not available then data and css files should be load from indexedDB.
I may be wrong or this requirement look like weird but want to know ...
3
votes
1
answer
398
views
Which is better to make a web application offline -application cache or service worker?
I want to make my web application available even if network is not preset or when user is offline.
I searched about this and find two solution:
1) use Application cache
2) use Service worker
As ...
3
votes
4
answers
5k
views
Download a working local copy of a webpage as a single html file
I followed the instructions provided in this previous post. I am able to download a working local copy of the webpage (e.g. wget -p -k https://shapeshed.com/unix-wget/) but I would like to integrate ...
1
vote
0
answers
2k
views
save web page for offline usage, including ALL resources (loading in js)
So the goal is - I have a web page, and I want to embed it in a webview in an android app, but I need this page working offline. So I came to a solution to save the whole page with all files, I tried ...
2
votes
1
answer
99
views
Force device to cache linked pages for offline use
I have created a progressive web app that simply lists links (to URLs) that when clicked uses the default browser of the device (say mobile phone) to open the URL.
Is there a way to tell the device ...
0
votes
2
answers
584
views
Javascript database on browser hard-drive
Background:
We're writing an HTML5 offline first application for Chrome Browsers.
We are targeting specifically Chrome Browsers, and we don't want to make an extension to serve the functionality of ...
2
votes
2
answers
2k
views
Does Meteor-JS support offline storage/cache?
Does Meteor-JS support offline storage/cache?
From what I'm reading: https://guide.meteor.com/collections.html :
Instead, on the client, a collection is a client side cache of the
database. This ...
0
votes
1
answer
493
views
Infinite scrolling doesn't work offline
I am trying to learn jQuery and particularly jScroll from real examples. I found this website that might look silly to you but it's dead simple so it's a great example of jScroll work for me.
The ...
1
vote
1
answer
182
views
Using the StackExchange API to search on keywords
I'm thinking about writing an app that lets you download data from StackOverflow. There is one caveat: I want to download data that contains specified keywords. For example: if you search for "How do ...
1
vote
1
answer
107
views
Opening up PDFs locally on device with PhoneGap
How can I open up a pdf file locally on my device through my app? I used window.open to try an open up the pdf but it won't work. Is there another way to achieve this?
By the way I'm using AppPresser'...
2
votes
1
answer
990
views
Angular2 online / offline event
Is there a native Angular2 event to notify when the application loses / regains network connectivity?
Or a wrapper for window.navigator.online / offlinejs?
0
votes
1
answer
17
views
Prevent specific cached pages from trigging application cache updates
I'm making a web app that allows users to login in offline but only if they have logged in prevously online. The issue that I'm having is that for the user to be able to login offline, I need to cache ...
4
votes
0
answers
440
views
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 ...
0
votes
1
answer
286
views
Making website work offline with data sharing between LAN connected systems
HTML5 supports online web storage which can help in making our website to work offline. But, how can one share data between systems that are connected through LAN when offline?
The requirement is:
...
13
votes
1
answer
6k
views
Strategies to make a web application available offline?
We're currently building a web app (Django, Ember), and we just found that most of our potential customers require sporadic offline access to the application.
What we need is not just "presenting" ...
1
vote
1
answer
128
views
SpringMVC generated manifest xml Manifest fetch failed (406)
I'm generating a html5 cache manifest xml on the server side and I get
Application Cache Error event: Manifest fetch failed (406) this error message is in my console.
I have this tag in my html:
&...
4
votes
0
answers
1k
views
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 ...
0
votes
1
answer
263
views
Jquery mobile offline viewing
I have create a website using jquery mobile, and it works fantastic, now for the admin section, i want to build an offline page, wherein administrator can save data offline, and when he gets online, ...
4
votes
1
answer
2k
views
Browser loads assets twice after a dynamically added base html tag
To handle relative paths in a website I use a <base> tag added in the <head> of every page.
All the resources loaded through a relative-like path in the documents are properly fetched and ...
0
votes
2
answers
2k
views
How to dynamically change href attribute
I'm trying to make a little website browsable both online and offline using only html, css and a little of jquery\javascript.
Hence I'm using all relative paths and everything works fine unless I came ...
1
vote
0
answers
2k
views
symfony2 on/offline web application
Im looking for the best way to build an on/offline application with symfony2. I need some advice here:
Users can access the application from navigator on their computer or from tablet (like iPad)
When ...
0
votes
2
answers
458
views
Optimal way to include files/html for offline viewing
I'm currently building a website using the service provided by github with gh-pages.
Since it is possible to download the repository as a zip package, i'm trying to figure out a good way to include ...
1
vote
0
answers
259
views
is it possible to load offline version of site, while sending request to server
I have a single page app written in node.js which has a fair amount of javascript and css.
now is it possible to load the offline version of webpage as soon as the url is entered and at the same time ...
1
vote
0
answers
240
views
Building an Offline web app for Chrome browser
I have developed a webapp, which should be available to users even when they are offline.
I have referred and used "Taking Your Web Apps Offline: A Tale of Web Storage, Application Cache and WebSQL" ...
0
votes
1
answer
148
views
how to handle the data downloading in background dispatch queue from server if battery drains?
I am downloading the data at background from server in an offline app, where the data will be downloaded when the app launches for the first time .Later the app will be used as offline app.
I need to ...
1
vote
1
answer
4k
views
Firefox is currently in offline mode and can't browse the Web - Offline App Test
For testing purpose I tried to switch to offline mode (File > Work offline), and upon refresh, it showed "Firefox is currently in offline mode and can't browse the Web."
When I clicked "Try Again" it ...
7
votes
3
answers
6k
views
How can one download Mozilla's developer's documentation for offline reading?
Until recently, one could conveniently download Mozilla's developer's documentation, developer.mozilla.org.tar.gz, for offline reading. However, Mozilla seems to have upgraded the documentation to a ...
0
votes
0
answers
878
views
How to save a secure web page with all external sources for offline view?
I have an ssl page that I want to mimic on my local computer while it's offline.
This page includes scripts, images and an iFrame.
I have tried all kinds of varialtion to save it through the browser, ...