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'm trying to clone elements in a facebook iframe and append it back to its parent.

The first thing I did was to select the element that I want to clone(I'm using chrome dev tools):

var clone = $($0).clone();

Then selected its parent:

var parent =  $($0).parent();

Then appended the clone back to the parent:

clone.appendTo(parent);

But I got this one:

enter image description here

As you can see it doesn't actually append to the iframe but in the parent variable. Is there something wrong with my approach? Does facebook not allow this? I just need to make a few clones for a dummy account because I don't want to trouble my friends. All I need to do is to send out a few invites to use a facebook app so I was thinking of cloning a dummy account on the friend selection.

I'm talking about the request dialog: https://developers.facebook.com/docs/reference/dialogs/requests/

share|improve this question
I think you shouldn't try to access an iframes content. iframes don't allow this. What can be done is accessing parent window FROM an iframe, which you can't since you don't control the code in the iframe. – billy Sep 20 '12 at 4:01

2 Answers

up vote 1 down vote accepted

You cannot access a facebook iframe from outside the frame because of same-origin security restrictions in a browser. You will not be able to copy or modify the DOM in the iframe if it is served from a different domain than the host page.

share|improve this answer

All I need to do is to send out a few invites to use a facebook app so I was thinking of cloning a dummy account on the friend selection.

Whatever that actually means – its definitively the wrong approach.

If you want to test functionality of your app – use test user accounts for that. https://developers.facebook.com/docs/test_users/

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.