http://www.javascriptkit.com/javatutors/languageattri.shtml
http://en.wikipedia.org/wiki/Client-side_JavaScript
Yes, there is a difference .
<script language="JavaScript"> is incorrect
There is no attribute "language" it has been deprecated.
The required attribute is "type" and the type="text/javascript"
Hence...
<script type="text/javascript"> is now the correct form
http://en.wikipedia.org/wiki/Client-side_JavaScript
Yes, there is a difference .
<script language="JavaScript"> is incorrect
There is no attribute "language" it has been deprecated.
The required attribute is "type" and the type="text/javascript"
Hence...
<script type="text/javascript"> is now the correct form
'프로그래밍 > Web' 카테고리의 다른 글
[EL] EL (0) | 2009.05.18 |
---|---|
[jQuery] select option (0) | 2009.05.14 |
[HTTP] HTTP BASIC-AUTH (0) | 2009.02.27 |
[Servlet] Servlet에서 request의 input stream을 이용해서 읽어들일 때 (0) | 2009.02.19 |
[펌] Getting the Requesting URL in a Servlet (0) | 2009.02.19 |