Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Example

I would like to create a own design facebook share img and create the function like the example above. To be precise, I need to defined the title, message, photo(s) and URL of the share message . However, in the tutorial , I can only set the URL of my share message, How to set the other elements? (eg. photo, text paragraph of share message) Thanks

function fbs_click() {
    u=location.href;
    t=document.title;
    window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');
    return false;
} 

<a id = "facebook" href = "http://www.facebook.com/share.php?u=http://sharelink.com" onclick="return fbs_click()" target="_blank"  title="Share on Facebook"><img src="button.jpg" /></a>
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.