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.

caveman

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in 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);
    }
    }
    }

    in reply to: Smartmenus and IE8 problem #2745
    caveman
    Participant

    Hi Admin,

    It’s is strange but with the version 0.97 this problem not occurs.

    I tested with an apache server but still same results.

    Regards.

Viewing 2 posts - 1 through 2 (of 2 total)