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>
