parse xml
hi. i am trying to make a drop down menu with submenus with data loaded from xml.
i managed to parse only the first child an then i get undefined.
the xml format is something like this:
<menu>
<menu>
<menu>
<item></item>
</menu>
</menu>
</menu>
i use a for loop for the first child and on release event i call a function submenu,
and a for(i=0;i<myXML.childNodes.length;i++) but it's not working.
Any help will be appreciated.