Error parsing XML, line 884, column 64
Here is the solution to the error,This always happen because something is interpreting your document as XML rather than HTML. XML is much stricter than HTML - one of the rules is that ampersands (
&
) have a special meaning. They mean "here comes an XML entity", which is a special character. For instance, you can type "
to insert "
, or >
to insert > into your document.<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
Just copy this code and replace it with the above code in red,then the error will disappear
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.0";
Share on facebook to help other web developer
Thanks
Blogger Comment
Facebook Comment