Web accessibility service pageWeb accessibility service page

8.1:H108100 Provide interchangeable methods for Scripts, Applets, and Objects information.

Improper design

The NOSCRIPTS was not used to provide replacement text explanation for information brought about by the Scripts.

Improper design:

  <SCRIPT language="VBScript">
  <!--
  msgbox"welcome to the strungstrung communication homepage"
  -->
  </SCRIPT>
          

Proper demonstration

Use NOSCRIPTS to provide Scripts contents.

Proper example:

  <SCRIPT language="VBScript">
  <!--
  msgbox"welcome to the strungstrung communication homepage"
  -->
  </SCRIPT>
  <NOSCRIPT>
  Welcome to the strungstrung communication
  </NOSCRIPT>
          
End of Main Content