It seems jQuery is really great at traversing an XML object. It is quite easy to gather and filter node data. However I can't seem to find any information regarding sorting XML using jQuery. Is it possible? Or is there a plug-in?
I have a project which requires me to read an XML file, then filter and sort the data. Filtering I can do, but I have no idea how to sort XML. Since arrays are easily sortable in JS, my idea is to convert the XML into an array first, then filter the array (which is not as easy as filtering XML w/ jQuery) then sort the array. Does anyone have any better ideas? thanks, skube