Click to See Complete Forum and Search --> : XHTML Ajax


Me_Titus
01-13-2008, 01:16 PM
HI guys,

I am getting this error on firefox:

XML Parsing Error: undefined entity
Line Number 57, Column 23: <span>&nbsp;Surname</span>
----------------------^

It seems that it doens't know about what the &nbsp; is.
I tried adding a definition to the document but the problem persists... any ideas?

<?xml version='1.0' encoding='ISO-8859-1'?>

<!DOCTYPE container
[

<!ENTITY nbsp " ">

]>

<container>
<something>&nbsp;</something>
</container>


Thanks,

MeTitus

scragar
01-13-2008, 01:58 PM
use it's unicode reference instead:& #160;

Me_Titus
01-13-2008, 04:25 PM
use it's unicode reference instead:& #160;

Thanks for the hint ;)

MeTitus