Do you remove "Language" from your script tag?
Rules to Better JavaScript and jQuery|c7f61c73-def9-41b0-9ab4-266c8d1b1ea6
v3.0
Posted at
24/08/2015 11:08 AM by
William Yin
Rule Intro
A few years ago, it was common to have the "language" attribute within the script tags. This attribute was used to specify the scripting language of the contents of this element.
Page Content
Since these identifiers are not standard, this attribute has been deprecated in favor of "type".
<script href="script.js" language="javascript"></script>
Figure: Language attribute has been deprecated
<script href="script.js" type="text/javascript"></script>
Figure: The scripting language is specified as a content type
Read more on W3C website.
{A5F42E3C-B24E-43DE-8021-A85E9FED0656}
Do you feel this rule needs an update?