The following JAVASCRIPT works perfectly, I can SET and GET variables to "Local Storage" on
my local host testing domain (WAMPserver).
I can also SET and GET variables within my Construct project, exported to the SAME folder
as my external javascript file.
Question: Is the Construct Local Storage different than the server Local Storage?
I can SET a Local Storage value in Construct, GET it to confirm it is saved, but I am not
able to GET that same value from another js file within the SAME folder on the SAME domain?
localStorage.setItem("lastname", "Smith");
var xls = localStorage.getItem("lastname");
document.write(xls);