vote up 0 vote down star

What type should I use (If at all) in a javascript block inside html?
application/x-javascript
text/javascript

something/other...

flag

68% accept rate

4 Answers

vote up 4 vote down check

Beside that application/javascript is the official MIME type of JavaScript , most browsers only accept text/javascript or just ignore the type attribute value.

link|flag
vote up 0 vote down

After following a few links through the standards I've come to RFC 4329 which describes Scripting Media Types. It stats that "text/javascript" is obsolete and says that you should now be using "application/javascript".

Edit: Apparently no version of Internet Explorer supports "application/javascript", see: https://connect.microsoft.com/IE/feedback/ViewFeedback.aspx?FeedbackID=338278. So even though "application/javascript" is correct according to the standards, I suppose you need to use text/javascript to compensate for Microsoft's broken browsers (as usual).

link|flag
vote up 7 vote down

According to the standards you want to use "text/javascript"

link|flag
as Gumbo and Chad mentioned, the current recommendation is actually application/javascript; I'd suggest text/javascript for backwards compatibility, though; and btw: I think application/x-javascript is what Apache sends by default for '.js' files... – Christoph Feb 26 at 19:43
vote up 2 vote down

text/javascript

link|flag

Your Answer

Get an OpenID
or

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