jquery IE8 selector bizarreness - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T01:34:39Zhttp://stackoverflow.com/feeds/question/940383http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/940383/jquery-ie8-selector-bizarreness0jquery IE8 selector bizarrenessmorgancodes2009-06-02T16:06:45Z2009-06-02T16:23:06Z
<p>I'm working with an xml node of the following structure:</p>
<pre><code><CF>
<T>
<TX>title</TX>
<em>15:2:</em>
</T>
<KW>
<TX>SOMETHING ELSE</TX>
</KW>
<!-- OTHER TAGS, SOME OF WHICH HAVE A <TX> CHILD -->
</CF>
</code></pre>
<p>Things work more or less as I expect in firefox, but I'm getting weird behavior in IE8. For example, the following gives me a jquery object of length 14:</p>
<pre><code>jQuery("T TX", xmlDoc).length
</code></pre>
<p>where it should be only one (the "CF" tag contains only one "T" tag, which in turn contains only one "TX" tag).</p>
<p>Adding to the strangeness, if I remove the "T" from the selector, as in the following:</p>
<pre><code>jQuery("TX", xmlDoc).length
</code></pre>
<p>I get FEWER, rather than an equal or greater number of results (the jquery object's length is 12).</p>
<p>So, the first question is: if there's only one TX tag, and it has only one "T" tag, why does jquery find 14 "TX" tags which are descendants of a "T"?</p>
<p>The second question is: if I simplify the selector, removing the "T", why do I get fewer, rather than more results?</p>
<p>Am I doing something wrong, or have I stumbled upon a bug?</p>
http://stackoverflow.com/questions/940383/jquery-ie8-selector-bizarreness/940406#9404060Answer by jrista for jquery IE8 selector bizarrenessjrista2009-06-02T16:11:29Z2009-06-02T16:11:29Z<p>There are 14 characters in "<TX>title</TX>". Since I don't know how many actual TX elements there are, I couldn't say if the 12 from the second query is the number of TX elements in the document. </p>
<p>Kind of crazy and off the wall...but perhapse the length property isn't returning what you think its returning?</p>
http://stackoverflow.com/questions/940383/jquery-ie8-selector-bizarreness/940463#9404631Answer by Pablo Fernandez for jquery IE8 selector bizarrenessPablo Fernandez2009-06-02T16:23:06Z2009-06-02T16:23:06Z<p>Perhaps you can try something like this:</p>
<pre><code>jQuery('T', mydoc).find('TX').length
</code></pre>
<p>and see what happens</p>