• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Fetching Pop up window form values in Parent Window.

 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Ryan and Nate,

Couls you please help me out by telling how to fetch the value of POP up window form element in the parent window.

As i am struglling hard to get this thing done.

Pls help me out of this.

In my case i want to fetch the value of pop up window form element in the parent window whenever any click event is happening in the parent window and pop up getting opened.

Looking forward for your reply..

regarsd,
Parveen
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This has nothing to do with the Ajax book!

From the pop up you can get the value by doing

var strValue = window.opener.document.formName.elementName.value;

Eric
 
reply
    Bookmark Topic Watch Topic
  • New Topic