Skip to content

Instantly share code, notes, and snippets.

@josedaniel
Created May 31, 2011 21:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save josedaniel/1001363 to your computer and use it in GitHub Desktop.
Save josedaniel/1001363 to your computer and use it in GitHub Desktop.
Local storage cookies fallback
if (!window.localStorage){
function createCookie(name,value,days) {
if (days) {
var date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+date.toGMTString();
}
else var expires = "";
document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name){
var result = ""
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for(var i=0;i < ca.length;i++) {
var c = ca[i];
while (c.charAt(0)==' '){
c = c.substring(1,c.length);
}
if (c.indexOf(nameEQ) == 0){
result = c.substring(nameEQ.length,c.length);
}else{
result = "";
}
}
return(result);
}
localStorage = (function () {
return {
setItem: function (key, value) {
createCookie(key, value, 3000)
},
getItem: function (key) {
return(readCookie(key));
}
};
})();
}
@novwhisky
Copy link

Thanks for posting. I made a few modifications to make getItem() return null instead of an empty string as well as adding removeItem() https://gist.github.com/2890870

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment