Follow Techotopia on Twitter

On-line Guides
All Guides
eBook Store
iOS / Android
Linux for Beginners
Office Productivity
Linux Installation
Linux Security
Linux Utilities
Linux Virtualization
Linux Kernel
System/Network Admin
Programming
Scripting Languages
Development Tools
Web Development
GUI Toolkits/Desktop
Databases
Mail Systems
openSolaris
Eclipse Documentation
Techotopia.com
Virtuatopia.com
Answertopia.com

How To Guides
Virtualization
General System Admin
Linux Security
Linux Filesystems
Web Servers
Graphics & Desktop
PC Hardware
Windows
Problem Solutions
Privacy Policy

  




 

 

Attribute for <SCRIPT ...>
DEFER

Usage Recommendation
use it, but don't rely on it

By default, when you use <SCRIPT SRC="..."> to load an external script into the page, the browser halts processing the page until the external script is retrieved and executed. DEFER tells the browser not to wait for the script to load before going ahead and processing the rest of the page. The browser will load the script in the background while continuing to process the page.

DEFER, which is currently only supported by MSIE 5, is useful for situations where the script does not write anything to the page (i.e. does not use document.write()). In those situations it is better to let the user see the page while the script is executing.

For example, the following code indicates that the page should load the delscript.js script, but should do so in the background. delscript.js takes at least ten seconds to load (it was designed that way to simulate a lengthy download).

this code produces this
<SCRIPT 
   SRC="delscript.js" 
   DEFER
   ></SCRIPT>
this page

 
 
  Copyright 1997-2002 Idocs inc. Published under the terms of the Open Content License Design by Interspire