There are three general areas that Javascript can be placed for use in a web
page.
Inside the head tag
Within the body tag (like our example in the previous lesson)
In an external file (we'll talk about this next lesson)
The location choice of head or body is very simple. If you want
to have a script run on some event, such as when a user clicks somewhere, then you will
place that script in the head. If you want the script to run when the page loads, like our
"Hello World!" example in the previous lesson, then you will want to place the script
within the body tag.
External Javascript files and their uses will be discussed in the next lesson.
An Example Head Script
Since we have already seen the kind of script that goes in the body, how about
we write a script that takes place when some event occurs, say a click on a button.
We created a function called popup and placed it in the head of the HTML
document. Now every time someone clicks on the button (this is an event) an alert will popup with
"Hello World!". We will go into more depth on functions and events in a later lesson.