Javascript - Placement

<html>
   <head>     
      <script type = "text/javascript">
         <!--
            function sayHello() {
               alert("Hello World")
            }
         //-->
      </script>   
   </head>
 
   <body>
      <input type = "button" onclick = "sayHello()" value = "Say Hello" />
   </body> 
</html>

<html>
   <head>
   </head>
 
   <body>
      <script type = "text/javascript">
         <!--
            document.write("Hello World")
         //-->
      </script>
     
      <p>This is web page body </p>
   </body>
</html>

<html>
   <head>
      <script type = "text/javascript">
         <!--
            function sayHello() {
               alert("Hello World")
            }
         //-->
      </script>
   </head>
 
   <body>
      <script type = "text/javascript">
         <!--
            document.write("Hello World")
         //-->
      </script>
     
      <input type = "button" onclick = "sayHello()" value = "Say Hello" />
   </body>
</html>

<html>
   <head>
      <script type = "text/javascript" src = "filename.js" ></script>
   </head>
 
   <body>
      .......
   </body>
</html>

filename.js
function sayHello() {
   alert("Hello World")
}

No comments:

Post a Comment

Welcome

Lets learn java script