I found a bug listed on the jQuery site that contained a patch and I applied the patch to my copy of jQuery 1.3.2
Bug is listed here: http://dev.jquery.com/ticket/1612 Patch was listed here: http://dev.jquery.com/changeset/3300 And here is what I did to the minimized version I downloaded. 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 <art.cow...@gmail.com> wrote: > 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 works in IE? > > Thank you, > Art > > Details > --------------------------- > WinXP > IE7 > jQuery 1.3.2