Having a problem with stored variables
Hi
I seem to be having an erratic issue with stored variables.
This code does not insert the value of the text label into the stored variable
Stored variable = ExpiryDate
Text Label Value = L_Expires
I have tried the following...
var expiryD;
expiryD = Appery("L_Expires").text();
localStorage.setItem('ExpiryDate', expiryD);
As there seems to be no consistency with syntax, I have also tried
var expiryD;
expiryD = Appery('L_Expires').text();
localStorage.setItem('ExpiryDate', expiryD);
What is wrong with this code. I think I am being blind?