Re: Passing value from pop window to parent window

2006-08-22 Thread Hanmay Udgiri
Hi It is working perfect!! thanks and regards hanmayya udgiri On 8/22/06, Anjishnu Bandyopadhyay <[EMAIL PROTECTED]> wrote: Hi, You can try something like: function updatetext() { var val = document.getElementbyid("secondForm.attribute").value; window.op

RE: Passing value from pop window to parent window

2006-08-22 Thread Anjishnu Bandyopadhyay
Hi, You can try something like: function updatetext() { var val = document.getElementbyid("secondForm.attribute").value; window.opener.func(val); } Here, "func" is a JS function in the parent window. In "func", write your code to set the value. With best regard