I have been running YSlow against my site and the Microsoft Ajax files are quite hefty:

http://ajax.microsoft.com/ajax/3.5/MicrosoftAjax.js = 99.3k

and

http://ajax.microsoft.com/ajax/mvc/MicrosoftMvcAjax.js = 136.7k

Is there likely to be a minified version of these files on the Microsoft CDN soon?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

http://ajax.microsoft.com/ajax/3.5/MicrosoftAjax.js is already minified... if you look at the code.

the only way that its going to do better if they gzip them ... which they do for certain browsers...

http://ajax.microsoft.com/ajax/mvc/MicrosoftMvcAjax.js is coming up as a 404

http://ajax.microsoft.com/ajax/mvc/1.0/MicrosoftMvcAjax.js is the correct address and is minified as well...

I get that MVCAjax is 4.3 KB (when saved to disk) and MVCAjaxDebug is 12 KB ....

...I know you are looking for performance but I think this might be a dry well.

-Mark

link|improve this answer
MVCAjax is 2.06 KB when downloaded via IE – Hurricanepkt Jan 25 '10 at 16:57
Change the code to reference mvc/1.0 and I'm getting the 4.8k in YSlow Components breakdown, the 404 must be 136.7 ;-> – Nicholas Murray Jan 25 '10 at 17:00
feedback

You can minify the files yourself here.

link|improve this answer
Just realised this isn't what your looking for! – bleeeah Jan 25 '10 at 16:41
If they will not be available soon I might have to do this! – Nicholas Murray Jan 25 '10 at 16:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.