I’m loading jQuery from google on my site (http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js) which is minned and gzip’d. In firefox, the jquery file shows as a 19k request, but Safari shows it as a 56k request. I’m assuming then that Safari is not accepting it as a gzip’d file. What’s the deal? It’s coming from google and I’m pretty sure it’s supposed to be gzip’d
I’m loading jQuery from google on my site ( http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js ) which is minned
Share
Just thought I’d add to this in case people stumble upon the same question. After playing around with Dev tools more, and looking at response headers, I noticed that the
Content-Lengthactually shows the correct gzip’d size. I can only assume then that it is in fact getting the proper compressed version but in the main resource window it displays the uncompressed size, and the headers show the compressed size.