Link to home
Start Free TrialLog in
Avatar of b_rajathilagam
b_rajathilagam

asked on

how to get child-window's field value from parent window?

Hi ,

         My problem is, i am creating a online html editor, each tag having some set of attributes, so if the user press any button (html tag button) i wants to generate a new window for getting properties value of particular html tag. For each tag i wants to create a new window to get that tag's properties's value. The child window will have one submit or push button. Once the submit or push button get activate, i wants to get all the fields value inside the child window from parent window.

Can i get field's value which is on child window from parent window using childwindow referernce or any other way?


Thanks.
Avatar of devic
devic
Flag of Germany image

var mypopup=window.open("mypopup")

and then:

var myfielld = mypopup.document.formName.fieldName.value
ASKER CERTIFIED SOLUTION
Avatar of GwynforWeb
GwynforWeb
Flag of Canada image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
rereading this I am not sure I understand exactly what you want however the above may help.
Avatar of b_rajathilagam
b_rajathilagam

ASKER


The answer is exactly full-filled my requirements.


Thanks to all supporters...