> 
> http://bugs.typo3.org/view.php?id=1477
> 
I am afraid this patch would not work for XAJAX.
XAJAX does not use /*<![CDATA[*/ at the moment as it is usual with TYPO3.
You can overcome this error by putting a blank after and before the '<'.
> for (var i=0;i<this.length;i++) {
==>
for (var i=0;i < this.length; i++) {
- Franz