0

I have a flash 8 app that's reading an XML file. In the file are nodes containing the & character.

When these values are rendered they come out as "&"

How do I stop this?

pavium
  • 14,808
  • 4
  • 33
  • 50
Neil Middleton
  • 22,105
  • 18
  • 80
  • 134

1 Answers1

0

Try comparing the output of

childNodes.firstChild

to

childNodes.firstChild.nodeValue
Corey Ballou
  • 42,389
  • 8
  • 62
  • 75