[jQuery] IE7 Checkbox + Label + .change() bug

2008-09-02 Thread SeanCurtis
I ran across this while working on a checkbox "check all" script. http://members.iinet.net.au/~malen/jquery_ie_checkbox_bug/ Firefox, Opera and Safari all work correctly, however in IE6 and IE7 it requires 2 clicks in order to toggle the change state. The wierd thing is that the two clicks don't

[jQuery] Re: Question about the new jQuery website

2008-09-01 Thread SeanCurtis
I know that IE (6 and 7) both have issues with opacity with regards to content inside the opacity-changing container. If the content has bold text (IE6 and 7) or transparent PNG images there can be display issues - the font is rendered without it's anti-aliasing (eg. cleartype) and the image is re

[jQuery] Nested Selectors

2008-09-01 Thread SeanCurtis
Hi Guys, Just wondering how many times you can nest selector functions like parent, not, has, etc I tried the following... $ (".someDiv .someSpan:parent(:has(input:checked))").addClass("hasSelectedCB"); and $ (".someDiv .someSpan:parent(:has(input:not(:checked)))").addClass("notSelectedCB");