The HTML <script> referrerpolicy Attribute is used to specify the reference information that will be sent to the server when fetching the script.
Syntax:
<script referrerpolicy="no-referrer|no-referrer-when-downgrade|
origin|origin-when-cross-origin|same-origin|
strict-origin-when-cross-origin|unsafe-url">
Attribute Values:
- no-referrer: It specifies that no reference information will be sent along with a request.
- no-referrer-when-downgrade: It has a default value. It specifies that refer header will not be sent to origins without HTTPS.
- origin: It specifies to send the origin of the document as the referrer in all cases.
- origin-when-cross-origin: It sends the origin, path, and query string when performing a same-origin request, but only send the origin of the document for other cases.
- same-origin: It specifies that the referrer will be sent for same-site origins, but cross-origin requests will send no referrer information.
- strict-origin-when-cross-origin: It sends the origin, path, and query string when performing a same-origin request, only sends the origin when the protocol security level stays the same while performing a cross-origin request (HTTPS/HTTPS), and send no header to any less-secure destinations (HTTPS/HTTP).
- unsafe-url: It sends origin. path and query string but not include fragment, password and username.
Example: Below code illustrates the use of referrerpolicy attribute in <script> element.
HTML
<!DOCTYPE html>
< html >
< head >
< title >HTML script referrerpolicy Attribute</ title >
</ head >
< body style = "text-align: center" >
< h1 >GeeksForGeeks</ h1 >
< h2 >HTML script referrerpolicy Attribute</ h2 >
< br />
< button >Submit</ button >
< script id = "myGeeks" type = "text/javascript"
src = "my_script.js" referrerpolicy = "no-referrer" >
</ script >
</ body >
</ html >
|
Output:

Supported Browsers:
- Google Chrome 70.0 and above
- Firefox 65.0 and above
- Internet Explorer Not Supported
- Opera
- Safari 13.1 and above
- Edge 79.0 and above
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
28 Jul, 2022
Like Article
Save Article