Ixnay, can you be so kind and share an example for this newbie 🙂
I try with this code but i can’t get it work (i use a cookie example from w3c):
function setCookie(cname,cvalue,exdays) {
var d = new Date();
d.setTime(d.getTime() + (exdays*24*60*60*1000));
var expires = “expires=” + d.toGMTString();
document.cookie = cname+”=”+cvalue+”; “+expires;
}
function getCookie(cname) {
var name = cname + “=”;
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);
if (c.indexOf(name) == 0) {
return c.substring(name.length, c.length);
}
}
return “”;
}
function checkCookie() {
var user=getCookie(“username”);
if (user != “”) {
// activate the item and focus it
$(‘#main-menu’).smartmenus(‘itemActivate’, $(‘a#’ + user));
$(‘a#’ + user)[0].focus();
// alert(“id menu ” + user);
} else {
user = prompt(“Please enter your menu option:”,””);
if (user != “” && user != null) {
setCookie(“username”, user, 30);
}
}
}