Hi,
i have a opened a pop up window using window.open().how can i send the parameters back to main window from pop up?cause i am not even able to access session varaibles in popup.how can i pass the variables back to main window?
Regards
Vivek.s
Printable View
Hi,
i have a opened a pop up window using window.open().how can i send the parameters back to main window from pop up?cause i am not even able to access session varaibles in popup.how can i pass the variables back to main window?
Regards
Vivek.s
The parent object is opener. You can have an element in the opener window's javascript which you set from the popup window.
Code:window.opener.document.textboxname.value = 'dfkj';