Understanding Accessibility
A Guide to Achieving Compliance
on Web Sites and Intranets
by Robert B. Yonaitis

ISBN - 1-930616-03-1
Published by HiSoftware Publishing
6 Chenell Drive, Suite 208
Concord, NH 03301 USA

This example and all parts of the Understanding Accessibility book are ©2002 HiSoftware. No portions can be copied in part or in its entirety on any media without the express written permission of HiSoftware.

Example for Tutorial 8 - (l&m/6.3) Ensure that pages are usable when scripts, applets, or other programmatic objects are turned off or not supported. If this is not possible, provide equivalent information on an alternative accessible page.


 

1. If you use the Script Element use the NOSCRIPT Tag

Before Applying Rule

There is not a NOSCRIPT script element in the source

<SCRIPT language="JavaScript">

<!--function popwin(){window.open('http://www.hisoftware.com/acctest.htm','','width=400,height=200, scrollbars=1');} // -->

</script>

 

After Applying Rule

 


2. Do not use script in ANCHOR Elements

Before Applying the Rule

<a href="javascript:displayWindow('sample.htm',360,145)">

 

After Applying the Rule

<a href="http://www.hisoftware.com/sample.htm">


3. Do not use script in AREA Elements

Before Applying the Rule

Target Image

The Area element present a POP UP windows that displays the ability to press the mouse on the right location.

 

After Applying the Rule

Target Image