> Upgrading from 226 to 1.0 and than to 1.01 was really a pain... :-(
I just fixed this and updated the official 1.0.1 release. I forgot to
check the test suite to see if it still ran correctly - it was my
fault, and I'm sorry.
--John
> with jQuery version 1.01 I cannot select children if I write something
> like this:
>
> $('#someId>div>div')
>
> or $('/dashboard/locations/location')
>
> This also does not work anymore (I'm using that in the tabs plugin):
>
> $(this).find('>div')
>
>
> The '>' selector seems to be pretty much broken... The problem is caused
> by a closing bracket that has moved in the find function. In 1.01 it
> looks like this:
>
> if ( !foundToken ) {
>
> ...
>
> if ( t ) {
> var val = jQuery.filter(t,r);
> ret = r = val.r;
> t = jQuery.trim(val.t);
> }
> }
>
> Working was:
>
> if ( !foundToken ) {
> ...
> }
>
> if ( t ) {
> var val = jQuery.filter(t,r);
> ret = r = val.r;
> t = jQuery.trim(val.t);
> }
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/