Search code examples
facebookfbconnect

FB share in new window


I've got FB share working with the following code:

<a target="_blank" href="http%3A%2F%2Fwww.facebook.com%2Fshare.php%3Fu%3Dhttp%3A%2F%2Fferalmotion.com%2Fshare%3Fwatch%3Dfd5f0c2"> 
<img src="/images/logo/facebook.png" alt="share on facebook"/> 
</a>

The problem is it opens in a full browser window. Does anybody know how I would get the share to open in the standard 500 x 360 pop-up window ???


Solution

  • javascript will do the job.

    <script type="text/javascript">
    <!--
    function myPopup(url) {
    window.open( url, "myWindow", "status = 1, height = 500, width = 360, resizable = 0" )
    }
    //-->
    </script>
    
    <a target="_blank" href="javascript:myPopup('http%3A%2F%2Fwww.facebook.com%2Fshare.php%3Fu%3Dhttp%3A%2F%2Fferalmotion.com%2Fshare%3Fwatch%3Dfd5f0c2')"> 
    <img src="/images/logo/facebook.png" alt="share on facebook"/> 
    </a>