I want to disable the timestamp when loading the script, as it always includes a timestamp in the query string after the file URL. Please look at the image you will know.

I have also set up Ajax with the option cache: true. See the code here:
“js
$.ajax({
url: url
data: {},
type: ‘post’,
cache: true,
dataType: ‘json’,
success: function (data, status) {
//something here
}
});
and also I have set meta tag to the header of the HTML.
```html
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="Public">
<meta http-equiv="Cache-control" content="public">
<meta name="keywords" content="something">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
I am using jQuery v1.7.2
I’m not sure why jQuery is trying to load itself, but this seems to be related to
$.getScript()calls.You could consider adding the following snippet as high up as possible:
Putting the
cache: truein your$.ajax()doesn’t affect$.getScript()in any way and that’s what you’re seeing in that screenshot.