I am still struggling with multiple menus js on one page.
Return to Recent Questions
Q:
I am still struggling with multiple menus on one page. It is
probably something I am doing wrong, but I cannot see it.
A:
Now you have:
var absolutePos=1;
var posX="10";
var posY="10";
So, both of your menus have the same absolute position.
You can use relative position and place your menu inside <table>. In this case you should write so:
var absolutePos=0;
Return to Recent Questions
|