I am using the following well-known CSS code to get a drop down menu on a web page.
div#menu ul ul {
display: none;
}
div#menu ul li:hover ul {
display: block;
}
The menu is an u-list containing another u-list. When the mouse hovers over the list item in this menu, the second u-list becomes visible. The list items are no links, just text.
This works in modern browsers. I have a javascript forge for IE6.
However, it does not work on touch devices.
On the IPad nothing happens at all, even if I press on the list item. This is probably, because the list item is not an anchor. Or maybe, I need a click event to fix that.
On the Android browser, a longer press on the list item opens the sub-menu. However, no link in the submenu can be selected.
Can anyone help me?
In case, you need details (and have the time), look at
http://www.rene-grothmann.de/musica-aliter-test/
Thanks.