I have a window.open that opens a window named 'addGroup'. Now the window 'addGroup' has 1 form with an textbox and a submit button. When I click submit in 'addGroup' how can I get it to pass the value back to its parent page? Here is what I have so far:
<script language="JavaScript">
function sendData(m){
return true;
}
</script>
</head>
<body>
<form action="test2.cfm" method="post" onSubmit='return sendData(this);'>
Please type in a new group:
<br>
<input type="text" name="newGroup" size="20">
<br>
<input type="submit">
</form>
</body>
<script language="JavaScript">
function sendData(m){
return true;
}
</script>
</head>
<body>
<form action="test2.cfm" method="post" onSubmit='return sendData(this);'>
Please type in a new group:
<br>
<input type="text" name="newGroup" size="20">
<br>
<input type="submit">
</form>
</body>