Hi all,
I have a new form that is not responding in the Firefox browser and I can not figure out why. The code is:
<form action="http://www.hostmonster.com/monstermail" enctype="multipart/form-data" method="post">
<fieldset id="contact">
<label for="fName">First name</label>
<input name="fName" id="fName" required="required" />
<label for="lName">Last name</label>
<input name="lName" id="lName" required="required" />
<label for="biz">Company name</label>
<input name="biz" id="biz" />
<label for="phone">Phone</label>
<input name="phone" id="phone" type="text" />
<label for="email">Contact Email</label>
<input name="email" id="email" type="email" required="required" />
<label for="message">Message</label>
<textarea name="notes" id="message" required="required" >
</textarea>
</fieldset>
<p>
<input type="hidden" name="sendtoemail" value="mobile@badgarden.com" />
<input type="submit" value="Send" />
<input type="hidden" name="redirect" value="http://www.badgarden.com/emsuccess.htm" />
</p>
</form>