I don't get what's the issue on nº 1, could you try to make it more
clear?

Are you using jQuery v1.2.6? Regarding the second question,

$('#id ~.class')
$('#id ~ .class')
$('#id ~    .class')

all return exactly the same results here.  $('#id ~ class') returns 0
because ovbiously there are no 'class' elements.

- ricardo

On Oct 18, 7:04 am, asfman <[EMAIL PROTECTED]> wrote:
> 1. init
> $.fn[ready?"ready":"load"] (fn)
> here if we delete $.fn.ready,it comes $.fn.load(fn)  equals to $
> (document).bind("load",fn);
> Does it make any means?
> 2. selector
> if my selector is "~.xx" or "~   xxx",the search results are the same
> the reason is :
> the line 1537:
>   // And remove the token
>    t = jQuery.trim( t.replace( re, "" ) );
> here remove the blank results a bug .
> i think here we should remove the code above or replace the code with
> "if ( t.indexOf(" ") == 0 ) continue;"

Reply via email to