Web Hosting Offers
See the new scripts recently added to Dynamic Drive. Click here.
Original, practical CSS codes and examples such as CSS menus for your site.
    Search code samples  
 
  Keyword
 
 
 
   
 
 
  Code Samples
 
ASP
CSS
Dhtml
Html
Javascript
PHP
 
   
     LOGIN HERE  
 
Username
Password
Forgot Password
Verify Signup
 
 
 

Javascript >> Forms >> General

how do i access form field values across windows?

Visitor Ratings (3) :

Description
To access the contents of a form field in new window from the original window:
===================================================
var myVar =newwin.document.formName.formFieldName.value;

To access the contents of a form field in the original window from the new window:try the followong code.
====================================================
var myVar = opener.document.formName.formFieldName.value;

To access the contents of a form field in the original window from a frame in the new window:
=========================================================
var myVar = top.opener.document.formName.formFieldName.value;
Code
Select All
 Rate this Resource