I am new in developing a Facebook application. I have created an application in facebook where I have to share one of my web pages. I have used the facebook share button and I'm able to get the share dialog as a popup window. Actually what I want is to view the share dialog as a 'dialog' ,not as a window popup.
This is code what I have used.
<script type="text/javascript">
function fbs_click()
{ u = location.href;
t = document.title;
window.open('http://www.facebook.com/sharer.php?u=' + encodeURIComponent(u) + '&t=' + encodeURIComponent(t), 'sharer', 'toolbar=0,status=0,width=626,height=436');
return false;
}
</script>
<style>
html .fb_share_link
{
padding:2px 0 0 20px; height:16px; background:url(http://static.ak.facebook.com/images/share/facebook_share_icon.gif?6:26981) no-repeat top left;
}
</style>
<a rel="nofollow" href="http://www.facebook.com/share.php?u=<;url>" onclick="return fbs_click()" target="_blank" class="fbShare"></a></
Can anyone help me on this issue. Thanking You in advance.