jquery IE8 selector bizarreness - Stack Overflow most recent 30 from stackoverflow.com 2009-12-05T01:34:39Z http://stackoverflow.com/feeds/question/940383 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940383/jquery-ie8-selector-bizarreness 0 jquery IE8 selector bizarreness morgancodes 2009-06-02T16:06:45Z 2009-06-02T16:23:06Z <p>I'm working with an xml node of the following structure:</p> <pre><code>&lt;CF&gt; &lt;T&gt; &lt;TX&gt;title&lt;/TX&gt; &lt;em&gt;15:2:&lt;/em&gt; &lt;/T&gt; &lt;KW&gt; &lt;TX&gt;SOMETHING ELSE&lt;/TX&gt; &lt;/KW&gt; &lt;!-- OTHER TAGS, SOME OF WHICH HAVE A &lt;TX&gt; CHILD --&gt; &lt;/CF&gt; </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#940406 0 Answer by jrista for jquery IE8 selector bizarreness jrista 2009-06-02T16:11:29Z 2009-06-02T16:11:29Z <p>There are 14 characters in "&lt;TX&gt;title&lt;/TX&gt;". 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#940463 1 Answer by Pablo Fernandez for jquery IE8 selector bizarreness Pablo Fernandez 2009-06-02T16:23:06Z 2009-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>