Dynamically Trigger HTML5 Cache Manifest file?

You dynamically trigger caching by adding an iframe that points to an empty page containing the actual cache manifest.

offline.html:

<!DOCTYPE html>
<html manifest="offline.appcache">
<head>
    <title></title>
</head>
<body>
</body>
</html>

Make sure to add index.html to the cache manifest.
Then just add something like:

<iframe src="https://stackoverflow.com/questions/4548342/offline.html" width="0" height="0">

to document.body dynamically to trigger caching.

Leave a Comment