vote up 5 vote down star
1

What is the MIME type of javascript?

More specifically, what is the right thing to put in the "type" attribute of a script tag? application/x-javascript and text/javascript seem to be the main contenders.

flag

3 Answers

vote up 6 vote down check

This is a common mistake. The MIME type for javascript wasn't standardized for years. It's now officially: "application/javascript".

The real kicker here is that most browsers won't use that attribute anyway, at least not in the case of the script tag. They actually peek inside the packet and determine the type for themselves.

So the bottom line is that the type="text/javascript" doesn't do anything as far as the javascript is concerned, but it's part of the spec for both HTML 4 and XHTML 1.0.

link|flag
I can confirm that having <script type="application/javascript"> will fail in Internet Explorer. – John Millikin Oct 10 '08 at 2:23
Kelly's right, browsers tend to trust the MIME type sent with the response headers over the type attribute of the script tag. – Andrew Hedges Oct 10 '08 at 2:29
Standards are a good thing but some times the choices made by these committees are baffling. Javascript is text, text/javascript is what is in use so why choose application/javascript. Sometimes I wonder whether these people actually live in the real world. ;) – AnthonyWJones Oct 10 '08 at 7:02
@AnthonyWJones: It's complicated. This is an example where the standard came through to clean up a wild mess of rampant practices. There were as many as 8 ad-hoc MIME types in use. The committee came back with a solid recommendation, but only too late. And while JS is text, it's also source code. – keparo Oct 12 '08 at 5:59
For inline code, browsers will ignore script blocks if they use an unrecognized script mime type, like text/html, but will evaluate the script block if the type is missing or recognized. – Zach Nov 3 '08 at 18:43
show 1 more comment
vote up 1 vote down

In a script tag I would use text/javascript. This appears in the HTML 4.0 specification, anyway.

http://www.w3.org/TR/REC-html40/interact/scripts.html

[EDIT] Funny how the RFC that standardized on application/javascript is 2 years old, but text/javascript is still more common. Is this yet another case of custom triumphing over standards? It also appears in HTML5.

link|flag
text/javascript is still used for the same reason PNG images are avoided -- compatibility with IE 5 and 6. – John Millikin Oct 10 '08 at 2:32
And because intuatively it makes more sense to call it text/javascript. – AnthonyWJones Oct 10 '08 at 7:03
vote up 2 vote down

text/javascript

I believe IE doesn't accept application/x-javascript

Specifying the scripting language

link|flag

Your Answer

Get an OpenID
or

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