I have a xml file like,
<step_list Number="5">
<step Program="P1" Step="STEP01" Seq="1">
</step>
<step Program="P2" Step="STEP02" Seq="3">
</step>
<step Program="P3" Step="STEP03" Seq="2">
</step>
<step Program="P4" Step="STEP04" Seq="5">
</step>
<step Program="P5" Step="STEP05" Seq="4">
</step>
</step_list>
I want a way to read this file with ascending order of seq number. Can you give a clue about how is that possible in jQuery ?