| Author |
access a parent's form in an iframe
|
Hari priya
Ranch Hand
Joined: Mar 11, 2004
Posts: 134
|
|
Hello all, I have a jsp page with an IFrame. The jsp page has a form A assigend to it and the IFrame has a Form B assigned to it. Now, I need to use a property of Form A in the IFrame. Is it possible to do this? Thanks!
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
|
I'm not entirely sure what you mean by "property", but you can certainly use JavaScript inside the IFrame to reference anything in the enclosing frame. Just use "parent" before the element. For example, If I want to get the value of a text input named "customerID" in the enclosing frame, reference it with parent.document.myForm.customerID.value.
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: access a parent's form in an iframe
|
|
|