Accessing an XML node's value?

I’m try to access the value of an XML node:

<Stuff>This string is what I want.</Stuff>

However, the .nodeValue property isn’t working. It’s returning null. Stragely, the .nodeName property does work, and returns “Stuff” as it should. What do I need to do to get it working?

Thanks