I'm publishing a message on user wall using Facebook's "Post to your wall" popup. It shows a text area where the user can write a message. I want to put custom text in that text area; right now it has a watermark that says "write something...". I need to replace that.
I'm using this code which same from https://developers.facebook.com/docs/channels/:
FB.init({
appId:'YOUR_APP_ID', cookie:true,
status:true, xfbml:true
});
FB.ui({ method: 'feed',
message: 'Facebook for Websites is super-cool'});
