My Question is a sequel to this question
While the above questions says that
We figured out how to show the menu with a keyboard shortcut, but I'm not sure how to select one of the entries
I have figured out how to select single menu items using accesskeys(and by underlining the key letter), but I do not know how to pop up a menu on keypress.
The menu is a XHTML/CSS only menu, XHTML being
<ul>
<li>Menu 1
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</li>
<li>Menu 2
<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
</li>
</ul>