<script>
window.fbAsyncInit = function() {
FB.init({
appId : '<?php echo $app_id; ?>',
status : true,
cookie : true,
xfbml : true
});
};
$('a').click(sendRequest);
function sendRequest() {
FB.ui({
method: 'apprequests',
message: 'Check out this application!',
title: 'Send your friends an application request',
link: 'http://developers.facebook.com/docs/reference/dialogs/',
});
return false;
}
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
I want to send message: 'Check out this application!' this text as a link like Check out this application! can you help me please how its possible.