i have already read:
Using Facebook Graph to simply post a wall message with just javascript
and i am looking for something similar,
l>
<head>
<title>My Facebook Login Page</title>
</head>
<body>
<div id="fb-root"></div>
<script src="http://connect.facebook.net/en_US/all.js"></script>
<script>
FB.init({
appId:'147622691*******', cookie:true,
status:true, xfbml:true
});
FB.ui({ method: 'feed',
message: 'Facebook for Websites is super-cool'});
</script>
<fb:login-button perms="read_stream,publish_stream">Login with Facebook</fb:login-button>
<div id="content"></div>
<form> <textarea name="text" id="comment"></textarea>
<a href="#" id="submit_comment">submit</a></form>
</body>
but instead of posting 'Facebook for Websites is super-cool'... i would like to post the text that will be written in my textarea with the id=comment.
so users enters site, writes int he text area, presses a button which triggers the dialog box, dialog box displays text from textarea.
i am guess i will need to add some extra javascipt with some getelementbyid and a onclick event, but my javascript is very limited.
solutions or suggestions will be greatly appreciated.~
thank you