Re: tabs don't work on IE but work on chrome
My tags are closed. I juts posted partial code.Like I said it works in chrome but the following tab is giving trouble. If I take out this tab, the other tabs work just fine. <li><a id="mno"...
View ArticleRe: tabs don't work on IE but work on chrome
Your markup itself looks fine.I'll try rewriting it for clarity's sake and ensure that all of your tags are properly closed :<ContentTemplate><asp:Panel ID="pnlOptions"...
View Articletabs don't work on IE but work on chrome
These tabs work on google chrome but not on IE.The culprit in the following code is:<li><a runat="server" disabled="disabled" id="mno" href="#mno">mno</a></li>If I take out this...
View ArticleRe: tabs don't work on IE but work on chrome
I can't think of any reason the code you provided wouldn't work as expected as everything looks perfectly fine. I suppose you could try using an explicit HyperLink Control to see if that made any...
View ArticleRe: tabs don't work on IE but work on chrome
This problem is not resolved still. The following is not working in IE:<li><arunat="server"disabled="disabled"id="aResponsible"href="#divResponsible">Responsible...
View ArticleRe: tabs don't work on IE but work on chrome
Hi archnam,archnamLike I said it works in chrome but the following tab is giving trouble. If I take out this tab, the other tabs work just fine.<li><a id="mno" runat="server"...
View ArticleRe: tabs don't work on IE but work on chrome
The following worked for me:I changed the <a> tag to a hyperlink. This seems to work fine in IE. <li><asp:HyperLink ID="aResponsible" runat="server" href="#divResponsible"...
View Article