Close jQuery UI Dialog from Iframe

In order to make it work, you have to call the jQuery from the parent, not from within the iframe. To do this, use the following…

window.parent.jQuery('#upload-form').dialog('close');

That should do it!

Leave a Comment