'script' Example : script « Object « HTML / CSS

HTML / CSS » Object » script 
'script' Example

    
<html>
<head>
<title>script element example</title>
    <script language="javascript" src="yourjavascriptfile.js">
    </script>
    <script id="script1" language="javascript">
    <!--script code//-->
    </script>
</head>
<body>
    <script id="script2" language="javascript">
    <!--script code //-->
    </script>
</body>
</html>
    
      
      
Related examples in the same category
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.