|
You are here > Web Design > Web Accessibility > 41.2. NOSCRIPT Alternatives
NOSCRIPT Alternatives
To provide alternative text to scripts, use the NOSCRIPT tag. If a user's Web browser does not support scripting or has scripting turned off, the browser will execute the NOSCRIPT element, which can contain a link to an alternative accessible Web page with the same content.
For example:
...
<BODY>
<NOSCRIPT>
<A HREF="accessible_page.htm">Accessible Page</A>
</NOSCRIPT>
<SCRIPT language="JavaScript">
...
...
</SCRIPT>
Skip Navigation to Main Content >>>
[an error occurred while processing this directive]
|