A Pen by Alex Bowyer on CodePen.
Created
November 3, 2022 20:11
-
-
Save alexbfree/dce0ec56d44a8267630543e838dcf544 to your computer and use it in GitHub Desktop.
yLEJegW
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<body> | |
<h1>DelftStack learning</h1> | |
<h2>JavaScript get document referrer example</h2> | |
<p>We have arrived from this link : </p> | |
<p id="para"></p> | |
<script> | |
let refUrl = document.referrer // get referrer and storing in variable | |
document.getElementById("demo").innerHTML = refUrl; // assign value to paragraph | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment