<NOSCRIPT>
The NOSCRIPT tag is used to define content that should be displayed in place of
scripting for user agents that don't support scripting. The content of the NOSCRIPT
tag may be anything that you would normally find in the contents of the BODY tag.
If you have scripting defined, the NOSCRIPT element should appear outside of the
scripting elements.
Attributes
Attribute |
Description |
ID |
Identifies this tag to reference in script (program code) |
CLASS |
Define the class used to render this element (defined by a style sheet) |
TITLE |
A title that is associated with the element (displayed as a tooltip in Internet Explorer) |
|
Example
<SCRIPT TYPE="text/tcl">
...some Tcl script to insert data...
</SCRIPT>
<NOSCRIPT>
<P>Access the <A HREF="http://someplace.com/data">data.</A>
</NOSCRIPT>
Compatibility
HTML 4.01
|