I have a webpage where there is a texarea within a iframe. I need to read the value of this textarea from its child page javascript. Presently by using window.parent.getelementbyID().value in the javascript, I am able to fetch values of all controls in the parent page except the textarea within the iframe. Can anyone please give me any pointers to resolve this issue? Thanks in Advance, Archana
|
|
|||
|
|
|
If your iframe is in the same domain as your parent page you can access the elements using
If your iframe is not in the same domain the browser should prevent such access for security reasons. |
||||||
|
