Web Analytics Made Easy -
StatCounter Sending a form from a popup window - CodingForum

Announcement

Collapse
No announcement yet.

Sending a form from a popup window

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Sending a form from a popup window

    Hello,
    i have a popup window with a form, i would like to send the form data to a page that will be loaded in the opener window.
    How can i do this?

    Thanks,

    Giuseppe

  • #2
    // this goes in your parent window
    <script>
    window.name = "someWindow";
    </script>


    // this is the form in your popup
    <FORM TARGET="someWindow">
    bluemood | devedge | devmo | MS Dev Library | WebMonkey | the Guide

    i am a loser geek, crazy with an evil streak,
    yes i do believe there is a violent thing inside of me.

    Comment


    • #3
      Really thanks!

      Comment

      Working...
      X