I am trying to create a standalone web form. It uses only jQuery and Twitter bootstrap as external resources. I tried to cache them, but when I update offline, I get net::ERR_FAILED for jQuery and bootstrap. I am very new to AppCache, so any help is appreciated. Here is my manifest and where I include things in my HTML:
CACHE MANIFEST ../style-bootstrap.css http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js NETWORK: *
HTML:
<!DOCTYPE html> <html lang="en-us" manifest="/includes/pouchcontacts.manifest" type="text/cache-manifest"> <head> <meta charset="utf-8" /> <title>Contacts [OFFLINE]</title> <script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <link rel="stylesheet" type="text/css" href="style-bootstrap.css"> </head>
caching manifest application-cache
am71722
source share