Using jQuery 1.7.1, I am loading some HTML fragments via AJAX that are injected into the DOM via the html() method.
html()
The HTML content itself cannot be c
If your server is set up to correctly identify which resources can and cannot be cached, then the cache: false option should not be necessary.
cache: false
Another alternative is to use a POST rather than a GET using the type: 'POST' option on the ajax method.
POST
GET
type: 'POST'
ajax