2

When declaring

<meta http-equiv="Cache-Control" content="no-store">

inside the head tag of an HTML file which scope does this statement have?

Does it mean that all other files referenced in this document (like JavaScript or CSS files) shouldn't be cached either?

Or does it just refer to the current HTML file?

Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109
  • According to [this answer](http://stackoverflow.com/a/7413283/3067148) it only affects the current HTML page. Is this true? – Harold L. Brown Mar 06 '15 at 09:34
  • possible duplicate of [How to prevent caching of my Javascript file?](http://stackoverflow.com/questions/7413234/how-to-prevent-caching-of-my-javascript-file) – Joe Mar 06 '15 at 11:12

1 Answers1

2

The http-equiv attribute provides an HTTP header for the information/value of the content attribute.

The http-equiv attribute can be used to simulate an HTTP response header.

see HTML http-equiv Attribute

As mentioned in another answer this only seems to affect the current page.

Harold L. Brown
  • 8,423
  • 11
  • 57
  • 109