Here is the scenario:
OLD XML data was in the form of :
<data>
<![CDATA[[<span class='css'>SomeData XYZ</span>]]>
</data>
Now a sub element has cropped up in some of the data:
<data>
<![CDATA[[<span class='css'>SomeData XYZ</span>]]>
<subelement>
SubData ABC
</subelement>
</data>
with the previous format you could get the "SomeData XYZ]]" using: myXML.data
However, now if one tries that you get the entire body within the data tag including the subelements.
I also tried just myXML.data.text but it returned nothing also tried .* (returned everything between data tags)
Stumped.