Marcello, >Hi! I've found that if I use the special chars " " instead of a >space char in a taconite xml doc, I cant get the response doc to be >processed by taconite; for ex: > ><taconite> > <replaceContent select="#filemanager-address"> > > </replaceContent> ></taconite> > >debugging with firebug I got only this: > >[taconite] Plugin Version: 2.1.7 >[taconite] [AJAX response] content-type: text/xml; charset=utf-8; >status: 200 OK; has responseXML: true >[taconite] type: undefined >[taconite] responseXML: [object XMLDocument] > >I run taconite 2.1.7 with jQuery 1.2.1. > >What I shoud do to use the chars? >Thanks in advance!
The entity isn't a known XML entity--it's an HTML entity. You might be able to escape the ampersand (&nbsp;) to get it to work, but the best bet is to use the decimal representative of which is  . -Dan