The Wayback Machine - https://web.archive.org/web/20081120031800/http://www.webreference.com/html/tutorial16/5.html


spacer

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

home / experts / html / tutorials / 16 / 5

index12345678

Tutorial 16: Client-Side Scripting 101

Developer News
HP to Microsoft: Thanks for Nothing
iPhone Remains Left Out as Android Scores Flash
The Year of Living the OpenSocial

Deferring script execution

Sometimes, you put a script in a certain place in a document for a certain reason. For instance, the following script adds the current time and date at the specific point in the document:

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

Other script might do things that are not related to the document itself, such as set up event handling. If a SCRIPT element has the DEFER attribute, it indicates that the script contained or linked in that element does not have to be executed immediately. Although this is a nice addition to HTML 4.0, to my knowledge it is as yet unsupported by any browser. However, if you insert scripts that can be executed later on while the rest of the document is rendered, use this attribute, since it has no adverse effects.

index12345678

internet.comearthweb.comDevx.commediabistro.comGraphics.com

Search:

Jupitermedia Corporation has two divisions: Jupiterimages and JupiterOnlineMedia

Jupitermedia Corporate Info

Copyright 2008 Jupitermedia Corporation All Rights Reserved.

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

webref The latest from WebReference.com Browse >
Administering RBAC in PHP 5 CMS Framework · xref: Automatic Cross Referencing Script · Book Review: Content Rich
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Building Command Line Utilities with Python · fring Brings Mobility to Junction Networks' OnSIP · Another Big Win for Wi-Fi Positioning

URL: http://www.webreference.com/html/tutorial16/5.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.