What Does Language Attribute Do in Script Tag in JavaScript



The language attribute is used to mention the scripting language. Typically, its value will be javascript. Although recent versions of HTML (and XHTML, its successor) have phased out the use of this attribute. Yes, it is now deprecated.

Here you can see how it was used.

Live Demo

<html>
   <body>
      <script language="javascript" type="text/javascript">
         <!--
            document.write("Hello World!")
         //-->
      </script>
   </body>
</html>
Updated on: 2019-07-30T22:30:22+05:30

975 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements