Search

How to Close a jQuery UI Dialog From Inside an Iframe

Tadashi Shigeoka · Tue, August 23, 2011

Here’s how to close a jQuery UI Dialog from inside an iframe.

Calling jQuery('#searchDialog').dialog('close') from inside the iframe does not close the parent window’s dialog.

Prefix the call with window.parent. so the child page inside the iframe invokes the function on the parent page:

window.parent.jQuery('#searchDialog').dialog('close');

Reference Information