Skip to main content

Guidance on Designing For and Implementing New Windows

Headshot of Michael Spellacy (Spell)
  • Posted by: Michael Spellacy (Spell), Director, Accessibility
  • Pronouns: He/Him
  • Posted: Friday, June 16, 2023
  • Update: Friday, March 15, 2024

While opening a link in a new window is a popular request by many stakeholders, it is often done for the wrong reasons and without any understanding of the negative impact it can have on users. These include:

The Exception and Not the Rule Anchor ()

The decision to open a new window should always be made carefully and in the service of solving a particular problem. Opening new windows because somebody is leaving your site or for fear of diminished SEO is not a good enough reason. Often, it is best to leave the decision to open a new window up to the user. However, there are a couple of good reasons to open new windows. These include:

When we do make the decision to open a new window, we must take care to design and develop responsibly. Visually, we should include a signifier icon and a developer or CMS content creator will then do their part in the code to make it accessible to assistive technology users. A perfect example of this can be found in the privacy policy links often found on Job Alert forms. If we do not open a new window here, data will be lost, which is a justified reason:

Screenshot of Job Alert form that contains a signifier link, indicating that it will open a new window.

The code may look something like this:

<a href="../privacy-policy/" target="_blank">Privcy Policy <img src="new-window.png" alt="Opens in a new window"></a>

There are several different ways to handle coding here. This is the most direct and is an excellent example of doing something in an equal way for both disabled and non-disabled users alike.

Thank you for your effort in helping make the websites Radancy produces more inclusive and friendly to all.

Resources Anchor ()