LeoLionHeart
Programmer
I have two web pages 1 web page is the master and the second is a small window that pops up. On my small window I have a hidden input box which is the result of the selected index from a list box.
What I have on my main page is a text box which I want to be populated from the hidden input box via Javascript.
any ideas how to get the hidden value onto the master form.
This isn't working
document.parentWindow.item("txtSec").value = name;
What I have on my main page is a text box which I want to be populated from the hidden input box via Javascript.
Code:
function Display_Sec()
{
var name=document.Form1.savelistIndex.value;
alert(name);
document.parentWindow.item("txtSec").value = name;
window.close();
}
any ideas how to get the hidden value onto the master form.
This isn't working
document.parentWindow.item("txtSec").value = name;