I'm creating a little website and I have a variable made in javascript which is assigned through a script.
var alias = "";
After the alias is assigned a value, it is displayed in the URL/Location like so:
file:///C:/TEST/TEST/Desktop/Website/main.html?alias=Jordan
Is there a way to read the variable from another page, so when the page redirects it can say:
Hello 'Jordan'!
I think I heard somewhere that this was possible, but I never knew how!
Also: Is there a way to carry this variable accross MULTIPLE pages without using localstorage/cookies etc.