I have a web page with 2 iframes. One is mine, the other contains the Facebook like button. So a bit like this....
<iframe id='mine' class='mine_too' width="200" scrolling="no" height="100" src="http://domain.com/me.html" frameborder="0"></iframe>
<iframe name="fb_like_iframe" id="fb_like_iframe"
src="http://www.facebook.com/plugins/likebox.php?id=13559656314xxxx&width=300&connections=10&stream=true&header=false&height=587"
scrolling="no"
frameborder="0"
style="border:none;
overflow:hidden;
width:300px;
height:587px;
margin-bottom:10px;"
allowTransparency="true">
</iframe>
The problem is - the facebook like information is ending up in "my" iFrame as well as it's own! So what's in "me.html" is nowhere to be seen and we have 2 like buttons on the screen. Any idea?