Hi there. I found a bit of code on the web that I would like to use.
$(document).ready(function() {
$(".fbreplace").html.replace(/<!-- FBML /g, "");
$(".fbreplace").html.replace(/ -->/g, "");
$(".fbreplace").style.display = "block";
});
The problem is the browser thinks
<!--
is a real comment. How would I quote it in a way to tell the browser look for that string and it is not a real comment?