How can I disable the default hover effect on my asp.net menu and instead display child items when the parent item is clicked?
I am currently using the pre-built asp.net menu feature and populating menu items from a sitemap data source.
<div class="span2 menu-bar">
<asp:Menu ID="Menu1" runat="server" DataSourceID="SiteMapDataSource1" EnableViewState="false" IncludeStyleBlock="false"
StaticDisplayLevels="2" Orientation="Horizontal" CssClass="row-fluid" DynamicHorizontalOffset="-2" RenderingMode="List">
</asp:Menu>
<asp:SiteMapDataSource ID="SiteMapDataSource1" runat="server" />
</div>
Your assistance with this issue would be greatly appreciated.
Thank you in advance