Understanding Accessibility

Guideline 10. Use interim solutions.

Checkpoint 10.1 - Until user agents allow users to turn off spawned windows, do not cause pop-ups or other windows to appear and do not change the current window without informing the user

Opening new windows can cause problems for assistive devices and novice users. The user should always be aware that a new window will open on a particular event.

How do I do it?

The attribute ‘target’ is generally used to open new windows. In a frameset the use of ‘target’ is permitted once the frame has been named. If you are not using frames but want to use target to open a new window, you MUST inform the user that this is happening as users can become disoriented if the 'back' button fails to work as expected.

You can put text explaining this directly on the page, or in the link tag's title attribute. In a frameset the use of ‘target’ is permitted once ‘_blank’ is not used

<a href="othersiteimade.htm" target="newpage" title="clicking this link will open another browser window. Simply close this browser window to return to this page.">link to external site</a>

How do I check that it meets the WCAG criteria?

The page will be scanned in Dreamweaver for instances of the target attribute. Where the target attribute is found, and the page is not a frameset where the target has a name, and no text warning was given, the page will have failed the check. If any other pop up windows appear as a result of loading the page, the page will fail the check.

guideline 1 - 2 - 3 - 4 - 5 - 6 - 7 - 8 - 9 - 10 - 11 - 12 - 13 - 14