Forum Moderators: phranque
Are you expecting a pop-up to appear when you click on the link? Looking at the code sample you gave, you will see (in among the rest):
href="javascript:void(0)" and
[b]onClick[/b]="return false" This tells the browser to do nothing when the link is clicked. The other instructions in there are:
[b]onMouseOver[/b]="popUp('elMenu2',event);" and
[b]onMouseOut[/b]="popDown('elMenu2');" Which give instructions for what to do (opening or closing a pop-up, I assume) when you mouse over the area.
Does the menu appear when your cursor hovers over the link? If you want it to open when you click on the link, it should read something like:
[b]onClick[/b]="popUp('elMenu2',event);"