Alright, I have a frame and I want it to put text into the other frame. Now, there's two ways I can do it. I can use
which wipes the rest of the page away or I can useCode:parent.MyFrame.document.write ("data");
[CODE]parent.MyFrame.MyDIV.innerHTML =The first is undesirable because the entire page is wiped clean to insert the new text. The second won't work in FireFox. My question: Is there anyway to keep a document.write() from deleting the rest of the page, or is their an equivilent to the innerHTML property in FF?Code:parent.MyFrame.MyDIV.innerHTML + 'new text<BR>';




Reply With Quote