I added a standard facebook like button to my webpage:
function CreateNewLikeButton() {
var elem = $(document.createElement("fb:like"));
elem.attr("width", "200");
elem.attr("layout", "standard");
elem.attr("font", "arial");
$("div#fb-root").empty().append(elem);
FB.XFBML.parse($("div#fb-root").get(0));
}
When I click on it i recieve an error that says that current url is not available.
current url is http://localhost....
what to do ?