my page loads jQuery from https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js
On repeated loads, looking in chrome dev tool network tab I see for jquery.min.js a return status of '304 Not Modified' with time/latency sometimes up to a second.
I can also see in devtools that the response header for jquery was 'Expires:Thu, 31 Dec 2037 23:55:55 GMT' , still it returned 304
For other files my site, for example cdnjs.cloudflare.com/ajax/libs/jstree/3.2.1/jstree.min.js , I see a return status of '200 OK' and '(from cache)' under size and they have super short latenct/time (which I guess means 100% cached result with no remote roundtrip)
How can I tell the browser that if the jquery url exist in the cache to use it without any remote traffic ? I need the fastest possible load time for my site.
Thx!