Hello,
How do I hide the url that shows up at the bottom of the webpage when my mouse hover over clickable links?
If I cant hide it, can I replace that url with javascript:void(0); for appearance? For context, I want to hide the url when I hover my mouse over the menu below.
I populate the menu from a database and now I am not quite sure how to hide the url that shows up at the bottom page whenever my mouse hover over it.
<nav>
<asp:Menu ID="Menu1" runat="server" Orientation="Vertical" RenderingMode="List" CssClass="menu" >
<LevelMenuItemStyles>
<asp:MenuItemStyle CssClass="main_menu" />
<asp:MenuItemStyle CssClass="level_menu" />
</LevelMenuItemStyles>
<StaticSelectedStyle CssClass="selected" />
</asp:Menu>
</nav>