i'm having a strange problem with my xml (i'm parsing it with jQuery):
<?xml version='1.0' encoding='ISO-8859-1' ?>
<root>
<msg><![CDATA[<b>Email was sent!</b>]]</msg>
<cod>ok</cod>
</root>
when parsing - retrieving <cod> works but <msg> doesn't (it returns blank).
it works when omitting the <![CDATA[ tag .. this is strange - i checked the syntax and it must be correct :/
any ideas what could be wrong?
thanks