Work Around for Escape Character FireFox CDATA
My friend ,found out that if you get the escape character from cdata it will be translated as it is on firefox.
We do put some html tag on xml , and how to get this translated to html tag again?
already tried the unescape or decode uri but seems not running.
So the work around is using a hidden text area.
set the innerhtml of that text area to your escape character html tags.
and then get the already translated one , using the textarea.innerText( IE ) and textarea.textContent(FireFox)