Does anyone know how to figure out if a window was opened by window.showModalDialog()? window.opener returns the parent window when the new window is opened by window.open(), but for some reason when you use window.showModalDialog(), window.opener returns as undefined. jQuery solutions are also welcome.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You can check if window.dialogArguments is defined:

function isModalWindow()
{
    return (window.dialogArguments != null);
}
link|improve this answer
Thanks. I actually used if(typeof window.dialogArguments != 'undefined') for our specific case, but this got me going in the right direction. – ryanulit Nov 19 '10 at 14:41
feedback

Your Answer

 
or
required, but never shown

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