W3 3.2n
4.0y
NS 3.0y
4.0y
IE 3.0y
4.0y
TV 1.2y
2.1y

<NOSCRIPT>...</NOSCRIPT>

Description

Supply alternate content that will be displayed by browsers that do not support the SCRIPT element, or the scripting language indicated by the language attribute of the SCRIPT element, or when execution of scripts has been disabled by the user.

DTD

<!ELEMENT NOSCRIPT - - (%block;)+
  -- alternate content container for non script-based rendering -->
<!ATTLIST NOSCRIPT
  %attrs;                              -- %coreattrs, %i18n, %events --
  >
from the HTML 4.0 DTD, "Copyright © W3C, (MIT, INRIA, Keio). All Rights Reserved."

Attributes

Core attributes: class id style title
Internationalization attributes: dir lang
Events: onclick ondblclick onmousedown onmouseup onmouseover onmousemove onmouseout onkeypress onkeydown onkeyup

Examples

Source
<SCRIPT>
document.write('Scripting is available.')
</SCRIPT>
<NOSCRIPT>
Scripting is not available.
</NOSCRIPT>
 
Result
Statistics