I have one parent window and two iframes in it. I am trying to access elements of one iframe from another iframe.Using the code:
function startplay(){ va
I had the same problem and solved it like this:
My main page code:
Left frame:
aaa
Right frame:
The function is:
changeLeftFrame(){ parent.leftframe.document.getElementById('DivInLeftFrame').innerHTML = 'bbb'; }
add the 'document' to work.