Web Development HTML Guide - Learn HTML
Developer Tutorials
ASP
CGI & Perl
CSS
Flash
HTML
Java
JavaScript
Linux
MySQL
PHP
Photoshop
Python
Wireless
XML



Developer Manuals
Learn HTML
Learn PHP
Learn MySQL
Learn CSS
Learn Pear


Developer Scripts
ASP Scripts
ASP.NET Scripts
CGI & Perl Scripts
Flash Scripts
Java Scripts
JavaScript Scripts
PHP Scripts
Python Scripts
Remotely Hosted Scripts
Tools & Utilities Scripts
XML Scripts

Developer Resources
Developer Tools
Developer News
Developer Forums
Developer Content
Developer Book Reviews
Survey Software

Web Hosting Directory
Budget Web Hosting
ColdFusion Hosting
Dedicated Servers
Domain Hosting
E-Commerce Hosting
Email Hosting
Free Web Hosting
Linux Web Hosting
Managed Hosting
Reseller Hosting
Small Business Hosting
Windows Web Hosting

<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>.