The code looks fine to me, but I have no clue why is it not bringing up the FB popup and sharing my site.
here is the js part
function streamPublish(name, description, hrefTitle, hrefLink, userPrompt){
FB.ui(
{
method: 'stream.publish',
message: '',
attachment: {
name: name,
caption: '',
description: (description),
href: hrefLink
},
action_links: [
{ text: hrefTitle, href: hrefLink }
],
user_prompt_message: userPrompt
},
function(response) {
});
}
function showStream(){
FB.api('/me', function(response) {
//console.log(response.id);
streamPublish(response.name, 'Connect with Abhishek Raj Simon on his new website http://abhisheksimion.cjb.net', 'hrefTitle', 'http://abhisheksimion.cjb.net', "Share abhisheksimion.cjb.net");
});
}
html
<a id="fbanchor" href="#" onclick="showStream(); return false;">Like it, Share it!</a>
Can somebody point out, where am i going wrong? You can visit the work in progress website http://abhisheksimion.cjb.net