Click to See Complete Forum and Search --> : help pls.....related to popup/frames


suganya
10-30-2003, 11:07 AM
i have a window with plenty of frames....

i am opening a popup onclick of a button on my second frame, with a msg and a cancel button....

now on click of the cancel button, i want say frame4 to be refreshed with blanks...

i tried :

parent.opener.document.write('')
top.opener.parent.frames[4].document.write('')

which were earlier suggested to me by this forum but they dont work...any help please...

thanks to everybody here....

requestcode
10-30-2003, 11:30 AM
Try:
opener.parent.frames[4].document.write('')

Or you could create an HTML document that is blank and do this:
opener.parent.frames[4].location.href="empty.html"