Hi,
I have a text based fly-out menu. The menu control generates sub-menu links in the following form:
<tr><td><a href="http://forums.asp.net/AddPost.aspx?ForumID=139#url#">#text#</a></td></tr>
I'm getting complaints that you have to hover over the text for the link to work, i.e. only *part* of the menu item visible to the user is an active clickable region. When some menu items have short text, this is really annoying.
Eg: would want instead something like:
<tr><td onclick="window.location.href='#url#';" style="cursor:pointer;">#text#</td></tr>
Does anybody know a workaround to make the generated sub-menu work this way?