[jQuery] IE tabbing not following tabindex after DOM manipulation

2008-11-12 Thread 5h4rk
Basically, I have 4 links, a href=#1Link 1/a a href=#2Link 2/a a href=#3Link 3/a a href=#4Link 4/a then I use jQuery to add the tabindex to all of them so they look like something like this, a href=#1 tabindex=1Link 1/a a href=#2 tabindex=2Link 2/a a href=#3 tabindex=3Link 3/a a href=#4

[jQuery] Re: IE tabbing not following tabindex after DOM manipulation

2008-11-12 Thread 5h4rk
OK, just come up with a solution. In the JS, instead of adding the tabindex like this: $(this).attr('tabindex', i); I changed it to this: this.tabIndex = i++; And IE now actually follows the tabindex. Is there any explanation for this? On Nov 13, 2:45 pm, 5h4rk [EMAIL PROTECTED] wrote

[jQuery] hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
Hi, I have p class=jsoffPlease turn Javascript on to view the content./p and $('p.jsoff').hide(); When I turn CSS off using the Web Developer Extension for Firefox and Javascript on, the message is somehow not hidden. I'm not sure if this is the problem, but Instead of style=display:none;,

[jQuery] Re: hide() not working when disabling CSS

2008-10-27 Thread 5h4rk
function that hides it. On Mon, Oct 27, 2008 at 11:01 PM, Karl Swedberg [EMAIL PROTECTED]wrote: On Oct 26, 2008, at 9:33 PM, 5h4rk wrote: Hi, I have p class=jsoffPlease turn Javascript on to view the content./p and $('p.jsoff').hide(); When I turn CSS off using the Web