Hi,
I have the following that works fine in IE but will not retrieve the value in Netscape 4. Can someone help me figure out why? Thanks. The fields do exist but I was wondering if Netscape can't see them for some reason. I know it recognises window.opener because I tested that. It just won't recognise anything on that page. It works fine in IE. The JobsInput form has not been posted at this point because this is a preview function a bit like the one here.
script:
document.form1.CompanyProfile.value = window.opener.JobsInput.CompanyProfile.value;
on same page as script:
<form name="form1" method="post" action="">
<input type="text" name="CompanyProfile" value="">
</form>
KatsKorner