Dec 16, 2004 #1 markprog Programmer Oct 4, 2004 12 US I have a window A that calls Modal window B which contains an I-Frame that contains window C. When window C is submitted I want window A to submit itself. How can I accomplish this from window C? Thank you
I have a window A that calls Modal window B which contains an I-Frame that contains window C. When window C is submitted I want window A to submit itself. How can I accomplish this from window C? Thank you
Dec 16, 2004 #2 adam0101 Programmer Jun 25, 2002 1,952 US In window A, pass the window object into showModalDialog("windowB.html",window,"dialogWidth:300px;dialogHeight:300px") Then use this in window C: Code: top.dialogArguments.document.formName.submit(); Adam "Computers make it easier to do a lot of things, but most of the things they make it easier to do don't need to be done." Andy Rooney. Upvote 0 Downvote
In window A, pass the window object into showModalDialog("windowB.html",window,"dialogWidth:300px;dialogHeight:300px") Then use this in window C: Code: top.dialogArguments.document.formName.submit(); Adam "Computers make it easier to do a lot of things, but most of the things they make it easier to do don't need to be done." Andy Rooney.