I have a hovering dropdown menu in Sharepoint 2010 that works fine with a mouse, but what i'am also trying to achieve is getting the menu to not reload the page on a mobile device (since the user has to click on menu dropdown) and act more like a onHover, i tried removing the href for the menu but that didn't do anything. I also compared my app to others made with sharepoint that work well on mobile, and i can't really see what they are doing different
is it some kind of css i'm missing? if you've run into this before i'd really appreciate your help.
this is what my asp menu code looks like. don't know how much help it'll be.
<SharePoint:AspMenu
ID="TopNavigationMenuV4"
Runat="server"
EnableViewState="false"
DataSourceID="topSiteMap"
AccessKey="<%$Resources:wss,navigation_accesskey%>"
UseSimpleRendering="true"
UseSeparateCss="false"
Orientation="Horizontal"
StaticDisplayLevels="1"
MaximumDynamicDisplayLevels="2"
SkipLinkText=""
CssClass="s4-tn"/>
Thanks.