Javascript How To Set Cookie Globally for all pages
For one page we can set Cookie as follows:
document.cookie = "myVarName=YourValue;";
For global we can set Cookie as follows just added extra 'path=/':
document.cookie = "myVarName=YourValue; path=/";
For one page we can set Cookie as follows:
document.cookie = "myVarName=YourValue;";
For global we can set Cookie as follows just added extra 'path=/':
document.cookie = "myVarName=YourValue; path=/";
No comments:
Post a Comment