| View previous topic :: View next topic |
| Author |
Message |
boylesg
Joined: 25 Apr 2008 Posts: 5
|
Posted: Fri Apr 25, 2008 2:12 pm Post subject: Submit a form via an email and then opening to a thanku page |
|
|
How do you acheive this?
The form is a shopping cart type arrangment, with a split frame, and I have it successfully sending me an email containing the ordered items.
But I can't figure out how to get the browser to redirect to the thankyou page.
<form action="MAILTO:gregplants@bigpond.com" method="POST" name="order" enctype="text/plain" onsubmit="thanku.htm">
Down the bottom is a button:
<input type="button" value="Place Order"
onclick="orderSubmit()"> |
|
| Back to top |
|
 |
|
|
rangana 250+ Club

Joined: 27 Feb 2008 Posts: 271 Location: Cebu City Philippines
|
Posted: Sat Apr 26, 2008 2:20 am Post subject: Re: Submit a form via an email and then opening to a thanku page |
|
|
Your attributes conflicts
| Code: |
<input type="button" value="Place Order"
onclick="orderSubmit()">
|
....Only the onclick will be processed here...since onclick comes earlier than the onsubmit attribute  |
|
| Back to top |
|
 |
|