In my javascript web app, I'm loading XML files in two ways. 1) via an ajax call, and 2) as the response from submitting a form to the server. The result of each load is an XMLDocument. I then try and read the data out of this document.
This works fine in IE7. In Chrome method (1) works fine, however, when the same document is loaded via method (2) in a CDataSection node the value of "nodeValue" is limited to 300 characters. The full text only appears in "wholeText".
Any ideas on why this would be or how I can get nodeValue to work in both situations?