I need to get all the data contained in this file XML
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<Tags>
<Tag>
<Nome>#SaintDenis</Nome>
<Classe>21</Classe>
</Tag>
....
</Tags>
in order to create an array arr like this
arr [[SaintDenis, 21]......]
how can i parse the structure of the xml file in javascript... thank you in advice!