Is there any way that, using jQuery and the Taconite plugin, you can return HTML that’s not valid XML? I tried using cdata, but it doesn’t seem to work.
Is there any way that, using jQuery and the Taconite plugin, you can return HTML that’s not valid XML? I tried using cdata, but it doesn’t seem to work.
January 18th, 2008 at 9:52 am
Hey dude, it doesnt work because for some strange reason you need to write the CDATA tag right after the eval tag. Example:
WRONG: <eval> CDATA or <eval> \n CDATA
RIGHT: <eval>CDATA
it worked for me, i hope this helps you! see ya!