I have this web site project in development, a typical e-commerce buy-sell website. Visitors can browse items, then click on it to go to a page providing details of the item; this is done using a query string to pass the item ID to the item detail page. On this item detail page I have put the code for the Facebook Like and Share button as shown here (I only did Step 1; not using Open Graph Tags):
https://developers.facebook.com/docs/reference/plugins/like/
I modified the that contains the Like and Share button like this:
<div id="fb" runat="server" class="fb-like" data-href="javascript:getThisHref()" data-send="true" data-width="450" data-show-faces="true"></div>
Where getThisHref() is a javascript function as follows:
function getThisHref(){
var thisUrl =document.URL;
//alert(thisUrl);
return thisUrl;
}
I have tested the function with the alert(thisUrl) and it has the correct address (http://localhost:63179/ProjectName/Product_Like.aspx?prod=ITWA000000) where prod is the query string for the product. However the Like and Share button do not appear.
Now I'm sure the problem is that the address is localhost..the question is is there anything I can do to make it work?
I'm not planning to upload the website to an actual server to be accesses by others as it is just a college project, just FYI~
Thanks for any advice or w/e you guys can offer.