Jump to content

Multiple forms on the same page (safari)


Presto-X

Recommended Posts

 

Hello everyone,

 

I have 3 forms on the same page, that opens in a new window and submits to a php file, this works great in IE8 but I can not get it to work in safari, I can click on the first submit button and it will work but if you close the first open window and click on the next submit button nothing happens???

 

I even played around with onclick refresh today without any luck in safari.

 

    <div class="stepBox1">
      <p class="note">Download and review instructions for circulating nomination petitions</p>
      <form name="instructions" action="download.php" method="post" target="_blank">
      <input type="hidden" name="file" value="2010_instructions_for_circulating_nom_petitions" />
      <input name="" type="submit" class="button_download" value="" />
      </form>
    </div>
    <form name="side1" action="download.php" method="post" target="_blank">
    <div class="stepBox2">
      <p class="note">Select Your County</p>
      <div class="radio">
        <label>
          <input type="radio" name="file" value="charlie_dent_nomination_petition_side_1_lehigh" id="county_0" />
          Lehigh</label>
        <br />
        <label>
          <input type="radio" name="file" value="charlie_dent_nomination_petition_side_1_northampton" id="county_1" />
          Northampton</label>
        <br />
        <label>
          <input type="radio" name="file" value="charlie_dent_nomination_petition_side_1_montgomery" id="county_2" />
          Montgomery</label>
        </div>
    </div>
    <div class="stepBox3">
      <p class="note">Download Petition SIDE 1</p>
      <input name="" type="submit" class="button_download" value="" />
    </div>
    </form>
    <div class="stepBox4">
      <p class="note">Download Petition SIDE 2</p>
      <form name="side2" action="download.php" method="post" target="_blank">
      <input type="hidden" name="file" value="charlie_dent_nomination_petition_side_2" />
      <input name="" type="submit" class="button_download" value="" />
      </form>
    </div>

 

Here is my page:

http://test.c-s-wilson.com/signatures/

Link to comment
https://forums.phpfreaks.com/topic/192587-multiple-forms-on-the-same-page-safari/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.