このような2つのHTMLファイルがあります。
親.html
<form method='get' action=''>
<input type='hidden' name='something'>
<input type='button' name='submit' value='Submit' onclick='newwindow=window.open("child.html","popup","height=150,width=200");'>
</form>
child.html
Enter Something Here<br />
<input type='text' name='somethingelse'>
<input type='button' name='submit' value='OK'>
ユーザーが親の [送信] ボタンをクリックすると、新しいポップアップ ウィンドウが表示され、何かを入力するように求められます。
input[somethingelse] の値をchildから input[something] に転送し、ユーザーが [ OK ]をクリックした後にフォームを親に送信する方法を教えてください 。