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 have a website that has an iframe in it that contains dynamic content (one time it is this link and other time it is that link etc..) . outside the iframe (in the regular site) I have 3 social buttons: Facebook Twitter & Google+.

I want the user to click on the social-buttons outside the iframe - but to like the iframe itselft *

To connect the iframe link to facebook is easy because I have data-href and I can put there the iframe's link:

<div class="fb-like" data-href="http://www.theIframeLinkIwant.com/" .../>

However how do I do it for twitter & Google+ - they don't have that sort of field:

<g:plusone size="medium" annotation="inline" width="120" class="googlePlus"></g:plusone>

<a href="https://twitter.com/share" class="twitter-share-button">Tweet</a>

thanks, Alon

share|improve this question

2 Answers

the issue for google+ was in the advance option:

just needed to add the href:

<g:plusone annotation="inline" href="http://www.whatever.com"></g:plusone>
share|improve this answer

For the twitter button read here

<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.yourwebsite.com">Tweet</a>

For google plus read here

<g:plusone annotation="inline" href="http://www.yourwebsite.com"></g:plusone>
share|improve this answer

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.