[jQuery] Re: Issue upgrading to 1.3

2009-01-15 Thread Balazs Endresz
Looks like it's related to this: http://dev.jquery.com/ticket/3837 On Jan 14, 9:32 pm, "Joe Morgan" wrote: > Hello, > > When I attempt to upgrade my site from 1.2.6 to 1.3, I get an unresponsive > script error that causes my browser (both IE7 and FF3) to hang if the script > is not stopped. > >

[jQuery] Re: Issue upgrading to 1.3

2009-01-15 Thread Richard D. Worth
Those aren't nested ids. The comma separates it into two (effectively) separate queries ul#loginSection li#emilyLogin:not(.loggedIn) ul#loginSection li#joeLogin:not(.loggedIn) and should join the results. - Richard On Wed, Jan 14, 2009 at 11:42 PM, James Van Dyke wrote: > > Try > > $("#emilyL

[jQuery] Re: Issue upgrading to 1.3

2009-01-14 Thread James Van Dyke
Try $("#emilyLogin:not(.loggedIn), #joeLogin:not(.loggedIn)").click( function(){} ); I'm thinking that the nested IDs are causing issues that the new selector engine can't handle. Since IDs are supposed to be unique per page, listing a hierarchy is unnecessary. Multiple IDs on a page woul