[jQuery] Re: :contains selector error/bug in IE

2009-05-18 Thread Spiderhawk
. Change this text: else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf (V[3])>=0} To this: else{if(U==="contains"){return(Z.textContent||Z.innerText||jQuery (Z).text()||"").indexOf(V[3])>=0} On May 15, 9:06 am, Spiderhawk wrote: >

[jQuery] :contains selector error/bug in IE

2009-05-15 Thread Spiderhawk
I am loading an XML doc with the jQuery ajax call and then trying to search it using this statement. var myRow = $(myXML).find('Cell:contains(0100)') This works just fine in FireFox and Chrome but I get 0 results in IE Can someone suggest an alternate way to accomplish this same search that wor