Files
pathduck.github.io/test/referrer/js-referrer.html
T
2025-06-01 11:43:10 +02:00

16 lines
393 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Referrer-policy test page</title>
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
</head>
<body>
<p>The Javascript referrer of the current document is:</p>
<strong><pre id="referrer"></pre></strong>
<script>
document.getElementById("referrer").innerHTML = document.referrer;
</script>
</body>
</html>