Definition: Noreferrer

« Back to Glossary Index

The “noreferrer” attribute is an HTML attribute that can be added to an anchor (<a>) tag to specify the relationship between the linked document and the current document. The noreferrer attribute can be used to prevent the linked document from being able to access the referrer information, which is the URL of the previous page that linked to the linked document.

The noreferrer attribute is used to improve the privacy of a website by preventing the linked document from being able to access the referrer information, which can contain sensitive or personal information. When a link is opened with the “noreferrer” attribute, the linked document will not have access to the referrer information and will not be able to track the user’s browsing behavior or history.

The “noreferrer” attribute can be added to an anchor tag in the following way:

php<a href=”https://example.com” target=”_blank” rel=”noreferrer”>Example Link</a>

It is important to note that while the “noreferrer” attribute can help to improve the privacy of a website, it is just one of several steps that should be taken to protect user data and privacy. Other measures, such as using secure connections (HTTPS), properly handling user data, and being transparent about data collection and usage, are also important for maintaining user trust and protecting user data and privacy.

« Back to Glossary Index