I am developing a website in which I need to send a value from parent window to child window.
Is it possible via the URL ?
For example: I have this line in parent window
<tr ondblclick="fopenclaim(69856984);" id =trackrow>';
function fopenclaim(number)
{
window.open('https://www.sample.com/ClaimsOnline/','claimform','width=800,height=800');
}
in that https://www.sample.com/ClaimsOnline/
I have a textbox named tracknumber. I want to fill the value of this number in to that text box.. Please help me to find out . Thanks in advance