I'm now working on a website where users can drag content to a certain box. Once a user drags a paragraph into this specific box , the dragged text is appended to the box. I want to be able to share the text on facebook . How am I able to implement the "post to wall" button so users will be able to share the data in the box on thier facbook wall?
*I already have a facebook app id.
Any suggestion will be helpful,
Thanks in advance
EDIT :
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<title>My Feed Dialog Page</title>
</head>
<body>
<div id='fb-root'></div>
<script src='http://connect.facebook.net/en_US/all.js'></script>
<p><a onclick='postToFeed(); return false;'>Post to Feed</a></p>
<p id='msg'></p>
<script>
FB.init({appId: "MYAPPID", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
link: 'https://developers.facebook.com/docs/reference/dialogs/',
picture: 'http://fbrell.com/f8.jpg',
name: 'whoTalk',
caption: 'Drag , Drop and Share !',
description: 'Share the selected status on your facebook wall'
};
function callback(response) {
document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
</script>
</body>
</html>