Depends on the DOM implementation. Some DOM implementations are bound to have inserted the CDATA section as a TextNode. Some may have the CDATA node there, though. In either case, either the data or the nodeValue property should contain the textual contents of it.
data and nodeValue aren't returning anything (I'm getting blanks). I know that the rest of my code is fine, because I can parse the exact same tag without the CDATA there.
Would something like innerText or whatever work? (I'm dealing exclusively with Gecko 1.4 or newer)
Skyzyx: Have you checked in the DOM inspector how the JavaScript object looks? You know, there might be whitespace nodes in between, which breaks your use of firstChild. Also, it might be that you need to normalise the content first. (Should eliminate all problems you might have with in-between nodes, if that's what the problem is really about.)