[jQuery] Using :nth-child(index) in IE with XML errors

[jQuery] Using :nth-child(index) in IE with XML errors


HI,
Has anyone experienced problems using the :nth-child selector when
trying to navigate XML in IE?
It works properly in Firefox, only IE is being stubborn.
I am doing something like this:
$(xml).find("mynode:nth-child(3)")
My XML looks something like this:
<root>
<one/>
<mynode/>
<mynode/>
<mynode/>
<mynode/>
</root>
Any suggestions appreciated. :)