Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<script type="text/javascript">
    /* ... */
</script>

vs.

<script language="Javascript">
    /* ... */
</script>

Which should be used and why?

(edit) Or, the third alternative: omitting either of these, such as the example code in jQuery's API reference:

<script src="http://code.jquery.com/jquery-latest.js"></script>
share|improve this question

3 Answers

up vote 41 down vote accepted

The language attribute has been deprecated. Both will work in pretty much all browsers, but the first better adheres to modern standards.

As for omitting type, yes, it will still work, but in XHTML 1.0 and HTML 4.01 is considered invalid. Try validating the following:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="http://example.com/test.js"></script>
</head>
<body/>
</html>

You will be informed of the following error:

Line 4, Column 41: required attribute "type" not specified

So if you're a fan of standards, use it. It should have no practical effect, but, when in doubt, may as well go by the spec.

share|improve this answer

HTML4/XHTML1 requires

<script type="...">...</script>

HTML5 faces the fact that there is only one scripting language on the web, and allows

<script>...</script>

The latter works in any browser that supports scripting (NN2+).

share|improve this answer
4  
HTML5 still supports 'Other scripting languages' on the web., but defaults the type to text/javascript if no type is explicitly defined. – Gordon Tucker Aug 3 '10 at 20:19
2  
Sure. My point was that HTML4/XHTML1 didn't want to make JavaScript the default for reasons of theoretical purity, while HTML5 makes a saner trade-off. – Ms2ger Aug 4 '10 at 14:20
What are the other scripting languages for web? – FakeHeal Apr 9 at 22:36
There are none. – Ms2ger Apr 22 at 14:20

The type attribute is used to define the MIME type within the HTML document. Depending on what DOCTYPE you use, the type value is required in order to validate the HTML document.

The language attribute lets the browser know what language you are using (Javascript vs. VBScript) but is not necessarily essential and, IIRC, has been deprecated.

share|improve this answer
The MIME type already indicates the language. The language attribute is redundant. – Álvaro G. Vicario Feb 15 '10 at 16:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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