Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
This is more of a javascript question, but you could try something like this untested code:

in the popup

<form action="#" onSubmit="submit_it(this);"> .... </form> <script language="javascript"> function submit_it(form) { for (var i=0; i < form.elements.length; i++) { opener.forms[0].elements['hidden_'+form.elements[i].name].value = f +orm.elements[i].value; } </script>
and then add hidden fields to the form in your opener named 'hidden_[name_of_field_in_popup]'

ofcourse if you use things like radios, checkboxes or select fields, you need to test for those too.

Take a look at PPKs javascript section for much more information on coding javascript.

An other technique could be to open the popup with the data from the opener in hidden fields... i cannot really say what the best solution would be without more info.

-- Joost downtime n. The period during which a system is error-free and immune from user input.

In reply to Re: View info from Pop up window into parent that invoked pop up. by Joost
in thread View info from Pop up window into parent that invoked pop up. by peacemaker1820

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-03-29 13:49 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found