vote up 1 vote down star

Hey guys,

I'm trying to programmatically close a Facebox modal with js that's called within the Iframe. That doesn't seem to work well with the Js DOM.

http://famspam.com/facebox

More generally, how would I close a generic modal that embeds an iframe with the code to close it inside the iframe. (sorry for the tounge(or eye) twisting)

Heres my example

I have a facebox with something like this:

jQuery.facebox("stuff goes here

Then INSIDE the iframe, I want to call jQuery(document).trigger ('close.facebox'); It only seems to work if I call it on the parent page or on the modal page, but not in the actual iframe. Is there a way I can make it close by calling it within an iframe example.php

Thanks

Edit: I was asking how I can access the parent frame from inside an iframe with JQuery to oversimplify the question

flag

2 Answers

vote up 1 vote down check

You can't modify an element that "belongs" to the parent page from within that popup page. As far as I know you will have to issue your hide code from the parent. You could always have your code inside the dialog do something like this:

parent.$("#dialog").hide();

I think that's what you're asking...

link|flag
I was asking how I can access the parent frame from inside an iframe with JQuery to oversimplify the question – yankees26an Jul 16 at 18:37
My example will do that. Then you can manipulate whatever you need from there. – Alex Jul 16 at 19:09
vote up 1 vote down

The embedded iframe is pointing to a URL on a different domain correct? In this case no, you cannot for security reasons make any calls to the parent document from within the iframe.

link|flag
No, it's on the same domain :) – yankees26an Jul 16 at 18:36
hmmm. I'm not really sure then! Sorry. – Spencer Ruport Jul 16 at 18:59

Your Answer

Get an OpenID
or

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