This is my first time in stackoverflow, so if I break any rule or something like that, tell me and I will try to fix it as soon as possible.
I am trying to configure a manifest file (appcache) to upload 2 files (one html and one JS) and be able to use this HTML code offline, but after many attempts, I could not configure the manifest file (or maybe something still fail?) to store appcache files.
At the moment I have in the same folder, 3 files: juego.html, damas.appcache and juego.js
damas.appcache:
CACHE MANIFEST CACHE: juego.html juego.js NETWORK: *
and in the html file ... juego.html:
<!DOCTYPE html> <html manifest="damas.appcache"> ...
I donโt think that my explanation requires more HTML or javascript code, but if necessary, regardless of this.
ยฟHow can I save files locally?
Thank you all
source share