Send a notification when a new window is opened

When a link or button opens a new window in the browser, it is advisable to add information such as “new tab”.

Either in the aria-label attribute:

<a href="gtc.html" target="_blank" aria-label="General Terms and Conditions (new tab)">
   General Terms and Conditions 
</a>

Or in the alternative text of an icon/image as follows:

Note

Use of the title attribute also complies with accessibility requirements:

<a href="gtc.html" target="_blank" title="General Terms and Conditions (new tab)">
   General Terms and Conditions
</a>

Comments

Add a comment

All fields are mandatory.

Back to top