form doesn't submit with netscape -

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

When I publish a form, I can submit a response correctly when using internet
explorer. However, when I try to submit from netscape ms outlook pops up to
compose an email. How do I fix this problem?
 
As I thought, a mailto: wrapped around the submit tag.

Near the end of the form, in Code view, Change:

<a href="mailto:[email protected]">
<input type="submit" value="Submit to CallawayMall.com"
tabindex="22" style="font-weight: bold" name="CMcFundraising"></a>

to

<input type="submit" value="Submit to CallawayMall.com"
tabindex="22" style="font-weight: bold" name="CMcFundraising">

and the form should send to email in all browsers.
 
Back
Top