vote up 0 vote down star

The whole question fits in the title. And to add some context: I'm not asking what is the best according to what the specs are saying, but rather what works the best given the mix of browsers deployed nowadays.

Some data points:

  • Google uses text/javascript for the JS used on their home page.
  • Google uses text/javascript on Google Docs.
  • Google uses application/x-javascript to serve JavaScript files with their Ajax libraries service.
  • Yahoo uses application/x-javascript to serve their JS.
  • Yahoo uses application/x-javascript for the JavaScript served on their home page.
flag
Funny. You give a third alternative in your examples... And according to Tim, both big players are wrong (with regard to standards), which probably only mean browsers are tolerant (no big news here) and it might no matter. – PhiLho May 18 at 8:28

3 Answers

vote up 4 vote down check
  • text/javascript - is obsolete
  • application/x-javascript - was experimental while deciding to move to ...
  • application/javascript is the current official MIME type for JS

That said, browsers ignore the content-type sent by the server and pay too much attention to the type attribute (and many don't yet recognise application/javascript).

My recommendation:

  • Use application/javascript on the server
  • Use text/javascript as a hack in type attributes in HTML documents
link|flag
1  
This question from a few months ago says the exact opposite. Someone is mistaken :) "Kelly's right, browsers tend to trust the MIME type sent with the response headers over the type attribute of the script tag" stackoverflow.com/questions/189850/… – Marco Aug 14 at 17:46
vote up 3 vote down

It has been "text/javascript" but this is obsolete (see the IANA List) and now it should be "application/javascript" (see another IANA List).

link|flag
vote up 4 vote down

In most situations, the mime type the server sends makes no practical difference. I would go with application/javascript, which is also recommended by an RFC.

link|flag
it's rfc 4329: ietf.org/rfc/rfc4329.txt – Christoph May 18 at 9:16

Your Answer

Get an OpenID
or

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