Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've just implemented ShareThis's facebook share button on my site, and I can share fine, however, I would like to open the confirmation dialog in a modal (popup), instead of it opening in a new tab every time.

I had a look at ShareThis's documentation, and here it states that I just need to pass popup: 'true' in the parameters when initializing, which I have done, but it has no effect, any time the button is pressed it opens up in a new tab.

No errors are being thrown in the console, and the share functionality works fine, am I missing something?

Here is my code:

<script type="text/javascript" src="https://ws.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">
    //init
    stLight.options({popup:'true', publisher: "abcdef-1234-1234-1234-1234abcdef1234", doNotHash: false, doNotCopy: false, hashAddressBar: false});

    //create widget
    stWidget.addEntry({"service":"facebook", "element":document.getElementById('fb_share_button'), "url":"http://www.site.com/link/to/share/" , "title":"Title", "type":"hcount" });
</script>

<span st_url="<!-- url is assigned dynamically -->" class='st_facebook_hcount' displaytext='Facebook' id="fb_share_button"></span>
share|improve this question

1 Answer

Perhaps you have some code that's forcing all links to open up in a new window, try implementing it in a js fiddle or test page.

share|improve this answer
Will give it a go quick, thanks! – John Mar 12 at 8:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.