popup appears but blank

Having problems with DHTML Menu? There is usually somebody here who knows the answer.
Post Reply
dhaack
Advanced
Advanced
Posts: 15
Joined: Thu Aug 05, 2004 8:01 am
Location: Chicago, US

popup appears but blank

Post by dhaack »

I have system storing the locations using offfunction to cookie so can remember last menu with dynamic menus.

Everything works when I return, except the popup menu is blank instead of the list of items. The location and size of menu is correct.

All menus are working properly otherwise.

any help would be appreciated

Dave




function setcookiemenu(mainmenu,menu) {
var locs=gpos(gmobj("menu" + getMenuByName(menu)));
y=setcookie(mainmenu,menu + "," + locs,1);
return y
}
function getcookiemenu(mainmenu) {
var cookie = getcookie(mainmenu);
comma1 = cookie.indexOf(",",0);
comma2 = cookie.indexOf(",",comma1+1);
comma3 = cookie.indexOf(",",comma2+1);
comma4 = cookie.indexOf(",",comma3+1);
menuinfo = cookie.substr(0,comma1);
toppos = cookie.substr(comma1+1,comma2-comma1-1);
left = cookie.substr(comma2+1,comma3-comma2-1);
height = cookie.substr(comma3+1,comma4-comma3-1);
width = cookie.substr(comma4+1,cookie.length);
menuNumber = getMenuByName(menuinfo);
spos(gmobj("menu" + menuNumber),toppos,left,height,width);
popup(menuinfo);
return
}
dhaack
Advanced
Advanced
Posts: 15
Joined: Thu Aug 05, 2004 8:01 am
Location: Chicago, US

Additional info

Post by dhaack »

Problem seems when call onload; even though calling after drawmenus()

If setup a <a href='javascript:getcookiemenu('MENUSERV');'>...

works perfectly everytime. Has to be with something with loading of page

Any recommendations would be appreciated

Dave
Post Reply