Hi,

Thanks for the fix. It works in firefox, but in IE7, selection
appears to still go wrong down in 'unique' (jquery 1.1.3, line 624) which is
called by find:
    the:
          first[i].mergeNum

  assignment raises a:
     Object doesn't support this property or method.

I see this error when doing a:
$('type1 type2', responseXML)

From the debugger, I see the first[i] causing the problem is actually a
type4, where the responseXML structure was:
type1/
 type2
 type3/type4

but I don't know enough about jquery internals to guess at what's
happening here or why the type4 is being looked at in a type2 search.

Thanks again,

Ted





On 7/2/07, Tony <[EMAIL PROTECTED]> wrote:

Hi,
I have the same problem with 1.1.3
This should resolve your problem:

$('type1',  responseXML),
$('type1 type2', responseXML),
$('type1 type3', responseXML)
$('type1 type3 type4',responseXML)

The
$('type1>type3', responseXML)
does not work too.

Regards


Reply via email to