<NOSCRIPT>

Usage Recommendation
use it if you use <SCRIPT ...>

<NOSCRIPT> is for content that should only be rendered (i.e. displayed) if the browser does not use JavaScript or other scripting languages. For example, the following code outputs the current time if the browser does scripting, and otherwise links to a time server:

<SCRIPT TYPE="text/javascript">
<!--
document.write("<I>Right now:</I> " + new Date());
//-->
</SCRIPT>
<NOSCRIPT>
Check out the current time: 
<A HREF="http://www.worldtimeserver.com">World Time Server</A>
</NOSCRIPT>

which gives the following script and <NOSCRIPT> content. Remember that if your browser does scripting then you won't see the contents of <NOSCRIPT>.





About the Author
Copyright 1997-2002 Idocs Inc. Content in this guide is offered freely to the public under the terms of the Open Content License and the Open Publication License. Contents may be redistributed or republished freely under these terms so long as credit to the original creator and contributors is maintained.