How to share the content on facebook?
■ Summary
- Facebook Sharing example for Websites
■ Reference Sites
- https://developers.facebook.com/docs/sharing/web
- Facebook Sharing example for Websites
■ Reference Sites
- https://developers.facebook.com/docs/sharing/web
/*********************************
* Facebook Sharing Example
**********************************/
function pstFaceBook(msg, url) {
href = "https://m.facebook.com/sharer.php?u="+ encodeURIComponent(url)+"&t="+ encodeURIComponent(msg);
var a = window.open(href, 'facebook', 'width=466, height=356');
}