thanks for the reply,
but i think i found the error, it was in the html where i did not close the <DIV> at the right place (doh). It is now working, as you can see in the links above except for some reformatting in the css that needs to be done in order to make it readible :)
Thanks for the time though.
Main Topics
Browse All Topics





by: jaysolomonPosted on 2004-02-29 at 20:19:52ID: 10483851
var parent; rentId); ntMenu"); ntMenu", id);
try
{
parent = document.getElementById(pa
}
catch(e)
{
return;
}
var current = parent.getAttribute("curre
if (id == current) return; // <- This is 185 BUT does NOT mean it is it could be one line above or below it where the problem is
mnpKillMenu(current);
if (id)
parent.setAttribute("curre
1 - Do not use parent for a variable it i think is a reserved word
change parent to something different and then test
2 - if that does not work make sure your passing all the required variables correctly
I do not have time right now to fully run and test your code, but if these do not work i will test
in the morning
jAy