Disable menu item
-
Hi Everyone, My menu is looking like following,
<a class="menu"; href="page1.aspx"; title="Page1"> Page1 </a>
<a class="menu"; href="page2.aspx"; title="page2"> page2 </a>
<a class="menu"; href="page3.aspx"; title="page3"> page3 </a>Now i want to disable page3 menu. how to do it... any help will be appriciated... thanks...
G.Paulraj
-
Hi Everyone, My menu is looking like following,
<a class="menu"; href="page1.aspx"; title="Page1"> Page1 </a>
<a class="menu"; href="page2.aspx"; title="page2"> page2 </a>
<a class="menu"; href="page3.aspx"; title="page3"> page3 </a>Now i want to disable page3 menu. how to do it... any help will be appriciated... thanks...
G.Paulraj
Try this,
<a class="menu" href="page3.aspx" title="page3" disabled="disabled"> page3 </a>
Arun Jacob http://codepronet.blogspot.com/
-
Try this,
<a class="menu" href="page3.aspx" title="page3" disabled="disabled"> page3 </a>
Arun Jacob http://codepronet.blogspot.com/
-
Hi Arun Jacob, Its working in Internet Explorere. but not working in other browser(Opera).
G.Paulraj
Okay then either remove href attribute or set onclick="return false;"
Arun Jacob http://codepronet.blogspot.com/