Hi,
I have a HTML page which contains an iframe. In the iframe is a
textbox that I would like to change the value of from the parent
window. In script I have tried...
<!-- Parent window -->
window.iframeName.document.formName.txtboxName.value = "new words"
but this doesn't work. I can't seem to reference the form but I know
I can get to the document because the following code works
<!-- Parent window -->
window.iframeName.document.bgcolor = "red"
Any suggestions?
Thanks,
JP