View previous topic :: View next topic |
Author |
Message |
vincentsbikeshop@hotmail.
Joined: 19 Apr 2007 Posts: 7
|
Posted: Mon Mar 04, 2013 9:00 am Post subject: Hello Want some help with my form. |
|
|
Hello I represent the company that has this site
http://www.vincents.se/
Currently I have made a form and it works fine
http://www.vincents.se/mc-formedling-formular-i-106.aspx
However if you finish the form (you only need to fill out the red *) and klick the submit button you will come to a thank you page with a link in it. If you klick that link there is an app with some general information about bikes. Is it possible to get this app to show up in a new tab? I noticed that it has the same link as the form so it might not be possible.
Thanks for your time.  |
|
Back to top |
|
 |
mycontac Site Admin
Joined: 31 Dec 2003 Posts: 2860
|
Posted: Tue Mar 05, 2013 4:15 am Post subject: |
|
|
Good Day,
Since you are embedded the form into a framed web site, there are a few options. What you will want to do is add a target="" attribute to the opening <form> tag. In your case, you'll change the following line:
Code: |
<form id="contactForm" style="width: 100%; border: 0px solid #000000; margin: 0; padding: 0; background-color: #ffffff;" action="http://www.mycontactform.com/sendform/sendform.php" method="post" name="contactForm"> |
To:
Code: |
<form id="contactForm" style="width: 100%; border: 0px solid #000000; margin: 0; padding: 0; background-color: #ffffff;" action="http://www.mycontactform.com/sendform/sendform.php" method="post" name="contactForm" target="_parent"> |
The _parent value for the target attribute means that the form will open into the main frame window, which is probably what you want. If you want it to open into a new browser window, use the _blank value for the target attribute.
Nick Ladd
myContactForm.com |
|
Back to top |
|
 |
vincentsbikeshop@hotmail.
Joined: 19 Apr 2007 Posts: 7
|
Posted: Thu Mar 07, 2013 3:03 am Post subject: |
|
|
Thanks for the answer we changed direction so we sadly won't need the advice any longer but it will still be useful in the future.  |
|
Back to top |
|
 |
|