Skip to content
Advertisement

Html/XML getting stuck looking for a node it shouldn’t be

I’m working on a small xml/html interface to list a bunch of buttons, and I’m having an issue with what I think is it looking for item types in nodes it shouldn’t be.

The XML has a <set> of groups, and inside that will be <items> which has a <type>, a ‘button’ or ‘break’.
After a check if <type> is a ‘button’, it then loads the <name>, but it seems to be trying to load <name> on ‘break’ types as well?

JavaScript

And the XML:

JavaScript

Advertisement

Answer

You are looking up the jth type element, when you need ot llok up the jth item element.

It is a one line change, below:

JavaScript

(and its a bit odd to have a variable named ‘type’, but that’s beside the point)

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement