This is error message is displayed when you are going to add a code manually in an html code.
Let suppose your code is loke
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&;version=v2.0";
and Error message is shown as
Error parsing XML, line 495, column 64: The reference to entity "version" must end with the ';' delimiter.
Solution to that problem is
Replace the code as
rc = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
Simply change &; with &
Now Problem Solved.
No comments:
Post a Comment