Start a new discussion

To start a new discussion please visit the discussions section of the GitHub home page of the project.

Discussions on GitHub

You can also search our old self-hosted forums for any useful information below but please note that posting new content here is not possible any more.

Reply To: Remembering menu status after changing page

Home Forums Older releases 1.0.x Remembering menu status after changing page Reply To: Remembering menu status after changing page

#2746
caveman
Participant

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);
}
}
}