Created
August 5, 2011 19:14
-
-
Save Amitesh/1128275 to your computer and use it in GitHub Desktop.
Undefined entity while XML parsing error in firefox
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
XML parsing does not support entity. is XHTML entity. If we parse the html or xml or html as xml then you get "Undefined entity" error in firefox error console. To make it working use unicode of (non-breakibg space character)   or simply put space (" " or  ). | |
for example : | |
<div> hello I am going to break. If you are going to use xml parser :( </div> | |
Corrected as : | |
<div>   hello I am going to break. If you are going to use xml parser :( </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
"Undefined entity" error in firefox error console. To make it working use unicode of (non-breakibg space character) or simply put space (" " or ).