Application Cache - Network :: ERR_FAILED

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> 
+9
caching manifest application-cache
source share

No one has answered this question yet.

See related questions:

1554
Disabling Chrome Web Site Cache
1398
How do we control web page caching in all browsers?
1001
Is Safari iOS 6 caching $ .ajax results?
951
How to force the browser to reload cached CSS / JS files?
683
What is caching code?
591
What is the difference between Cache-Control: max-age = 0 and no-cache?
14
HTML5 web application not cached when added to iOS home screen
one
Standalone Cache HTML 5 Application
0
Why are images not showing when using jQuery Mobile with offline cache?
0
HTML5 AppCache: Application Cache worked on the development server, but not on IIS 7.5

All Articles