For starting JavaScript, you must know how to add the JavaScript code in HTML page. This is the first step of JavaScript startup.

Syntax to include JavaScript

<script language="javascript" type="text/javascript">
    //--- javascript functions here
</script>

Where to put JavaScript on HTML Web Page

There are 4 ways of writing or including the JavaScript in a HTML web page:

  1. JavaScript in HTML Head.
  2. JavaScript inside the HTML Body.
  3. Inline JavaScript code.
  4. External JavaScript source
JavaScript in HTML Head

To execute the JavaScript when user hits any event on the HTML page by clicking or any property change that calls the JavaScript function are included or written in the Head section of the HTML Web Page.

<html>
<head>
    <title>JavaScript Example</title>
    <script language="javascript" type="text/javascript">
        //--- javascript functions here
    </script>
</head>
<body>
</body>
</html>
JavaScript inside the HTML Body

To execute the JavaScript for generating dynamic content on page load it can be placed inside the Body of HTML page.

<html>
<head>
    <title>JavaScript Example</title>
</head>
<body>
    <script language="javascript" type="text/javascript">
        //--- javascript functions here
    </script>
</body>
</html>
Inline JavaScript code

Inline JavaScript code is used to handle small functions directly bound to any event e.g.: color change on mouse over-out.

External JavaScript source

You can include external JavaScript files. JavaScript functions can be placed in the separate file that can be included on HTML web page.

Syntax
<script language="javascript" 
            type="text/javascript" 
            src="PATH TO EXTERNAL JAVASCRIPT FILE">
</script>

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments