Is order of elements returned from query supposed to match order of elements in document in 1.3.2 version of jQuery. I am doing following select from unordered list.
$el.parents('li')
and it is returning it in reversed order, from bottom up.
$el is three levels deep "li".
I understand that it walks the tree up, but this http://docs.jquery.com/Release:jQuery_1.3.2 explicitly states that elements are returned in the order they appear in document. So is this a bug?