spacer

Webref WebRef   Sitemap · Experts · Tools · Services · Newsletters · About i.com

home / experts / html / tutorials / 16 / 3

index12345678

Tutorial 16: Client-Side Scripting 101

Developer News
News Flash: Adobe Has iPhone Workaround
Adobe's Flash 10.1 Goes Mobile (Minus iPhone)
A Salute to Visionary CEOs

Embedding scripts into HTML documents

There are several ways to insert a script into an HTML document. Most of the time, you will be using the SCRIPT element.

The SCRIPT element

Context:
The SCRIPT element can appear in either the HEAD or BODY elements.
Contents:
The contents of the SCRIPT element is not considered HTML, and should be a script to be executed
Tags:
Both the start- and end-tags are required.

Attributes for the SCRIPT element

SRC (URI)
Location of an external script
TYPE (Content type)
The MIME Content type of the script
LANGUAGE (Character Data)
The language of the script
DEFER (Boolean)
If this attribute is present, the script does not have to be read and executed immediately

You can use the SCRIPT element in two ways. One is to use the SRC attribute to link to a script that is separate from the document itself, as in the following example.

<SCRIPT
 TYPE="text/ecmascript"
 LANGUAGE="JavaScript"
 SRC="http://www.acme.com/scripts/foo.js"
>
</SCRIPT>

The other is to include the script as the contents of the element, as below.

<SCRIPT
 TYPE="text/ecmascript"
 LANGUAGE="JavaScript"
>
<!--
today = new Date();
document.write("The time right now is " + 
               today.toString())
//-->
</SCRIPT>

Hiding scripts with HTML comments

Notice that I've enclosed the contents of the script above in an HTML comment (<!-- and -->). The reason for this is that old browsers that don't recognize the SCRIPT element will probably try and render the contents of the element as HTML. So why don't script-capable browsers also consider this a comment? The answer is that the contents of the SCRIPT element are not considered HTML, and so the comment start and comment end delimiters are considered part of the script (and, in the case of JavaScript, the comment start delimiter is ignored, while in the example above the comment end delimiter is hidden inside a JavaScript comment; this might not work with all scripting languages, however). This is the exact same technique used to hide style sheets contained in STYLE elements, as was discussed in Tutorial 6.

index12345678

internet.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

Legal Notices, Licensing, Reprints, Permissions, Privacy Policy.
Advertise | Newsletters | Shopping | E-mail Offers | Freelance Jobs

webref The latest from WebReference.com Browse >
Building a Banking Application Home Page with OOP · Mixing Scripting Languages · Review: phpFox, a Social Networking CMS with all the Bells and Whistles
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Enterprise 2.0: Social Networking in the Cloud · BroadSoft Marketplace Hastens Pace of Telephony Innovation · Review: HTC Hero for Sprint

URL: http://www.webreference.com/html/tutorial16/3.html

Produced by Stephanos Piperoglou
Created: September 15, 1999
Revised: September 27, 1999