I found a bug on jQuery 1.2.6 that has been fixed on 1.3.*
It's about using "plus" in selector but I don't know if is useful to create
a ticket...


Here the bug:

XML:

<books>
    <book>
        <id value="11"/>
        <author value="follet"/>
        <title value="Pillars of the earth" />
    </book>
    <book>
        <id value="1111"/>
        <author value="follet"/>
        <title value="Pillars of the earth" />
    </book>
</books>


JS:

$.get("test.xml", function(xml) {
    xml = $(xml);
    alert(xml.find("id[value=11] + author").length);
    //firefox echoes 1 (ken follet object) but IE6 give me "properties or
methods aren't supported by this object" (english translation from italian
error)
});





-- 
everything has got to end sometime we were satellites drifting off into
space
vega 4 - burn and fade away

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"jQuery Development" group.
To post to this group, send email to jquery-dev@googlegroups.com
To unsubscribe from this group, send email to 
jquery-dev+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/jquery-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to