I am opening a modal popup window. Then i access parent window textbox and other attributes using window.opener. It is working fine in firefox but not in IE8. It gives error 'window.opener is null'. How can i access parent window attributes in child window which works in both browsers.

link|improve this question

52% accept rate
Have you tried window.parent.opener? – Shakti Singh Feb 3 '11 at 11:52
i try it window.parent.opener but i unable to access parent document object. I pass parent.document as argument and access parent.document in popup as window.dialogArguments.parentDocumentObj where parentDocumentObj is name of variable which contains document. – dmay Feb 16 '11 at 12:04
feedback

3 Answers

up vote 2 down vote accepted

You can pass arguments to showModalDialog function. Simply pass window object as an argument.

window.showModalDialog(theURL, window);

Yo can access the arguments from the modal window using dialogArguments. See: http://msdn.microsoft.com/en-us/library/ms533723%28VS.85%29.aspx

var openerWindow = window.dialogArguments;
link|improve this answer
I should probably note that this works in IE and FF and probably other browsers, too. – Kaitnieks Feb 3 '11 at 13:55
feedback

There are two ways to solve the problem: Note: "window.opener" is not supported by IE if "showModalDialog" is been used.

1) Instead of "window.showModalDialog" use "window.open"

2) If you want to use "window.showModalDialog" then do the following:

<script language="javascript" type="text/javascript">
    function YourFunction()
    {
        var opener = null;

        if (window.dialogArguments) // Internet Explorer supports window.dialogArguments
        { 
            opener = window.dialogArguments;
        } 
        else // Firefox, Safari, Google Chrome and Opera supports window.opener
        {        
            if (window.opener) 
            {
                opener = window.opener;
            }
        }       
        // write you code and refer "opener"
        window.close();
    }
</script>

--Cheers Krishn Y

link|improve this answer
feedback

The approach I would take is 1. Use a existing javascript UI library becuase you are not first person to ever want to do this, failing that 2. Create a function called OpenWindow, that browser sniffs for the window.opener method

i.e. if(window.opener == undefined){ //probably not firefox... }

and if it finds it then uses it, else it tests for the IE variant and uses it...and then checks safari's version etc....

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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