The Wayback Machine - https://web.archive.org/web/20090424052122/http://www.webreference.com:80/html/tutorial16/3.html


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
PHP Middleware Debuts With Zend Server
AT&T Apps Beta Includes Customer Feedback
eBay Details 'Open' App Store Plans

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
Copyright 2009 WebMediaBrands Inc. All Rights Reserved.

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

webref The latest from WebReference.com Browse >
Debugging JavaScript: Understanding JavaScript Error Messages · User Personalization with PHP: User Registration · Shedding Some Light on Lightbox
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Revisiting Oracle Passwords · Hosted Voice Services: A Review of Smoothstone IP Comm. · Extreme Makeover: osCommerce Version 3 Alpha 5

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

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

Morty Proxy This is a proxified and sanitized view of the page, visit original site.