I get XML data through an AJAX call. One of the tags has a large amount of text, approximately 4000-5000 characters. In Firefox, the field is truncated around the 3000th character. Most of everything that I found on the Internet says that node sizes are not limited, but sometimes it depends on the implementation - there are no solid answers.
Does anyone have any suggestions as to why this could happen if there are no size restrictions on nodeValue? Any workarounds if so?
<test>
<foo>very long string...</foo>
</test>
value = testTag.getElementsByTagName("foo").item(0).firstChild.nodeValue;
value truncated.
-If I print xmlHttp.responseText, all data will be printed.
source
share