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
Microsoft Shows Off Silverlight 4, IE9 Plans
Metasploit Expands Vulnerability Test Framework
HyperCard Reborn?

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.commediabistro.comJusttechjobs.comGraphics.com

Search:

WebMediaBrands Corporate Info

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

webref The latest from WebReference.com Browse >
Rolling Out Your Own HTML Application Version Control · HTML 5: Client-side Storage · Working with Ajax Server Extensions
Sitemap · Experts · Tools · Services · Email a Colleague · Contact FREE Newsletters 
 The latest from internet.com
Wi-Fi Product Watch, November 2009 · Chip Market Recovering From '08 Collapse · Low-Cost Tools to Kickstart Your New Business

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

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