I am building a form for my website. My goal is to keep the website simple.
Basically when i hit the submit button, my form opens up my default email program, and thats bad, i dont want that to happen. My research tells me that the normal HTML code does something different with IE 6.
Here is my code, perhaps you can change what needs to be changed in the code for me, or at least point me to a fix.
Basically when i hit the submit button, my form opens up my default email program, and thats bad, i dont want that to happen. My research tells me that the normal HTML code does something different with IE 6.
Here is my code, perhaps you can change what needs to be changed in the code for me, or at least point me to a fix.
Code:
<FORM METHOD="POST" ACTION="[email="staff@keptbyfaith.com"]mailto:staff@keptbyfaith.com[/email]">
<p>NAME: <INPUT TYPE="TEXT" NAME="NAME:" SIZE="30"><BR>
EMAIL: <INPUT TYPE="TEXT" NAME="EMAIL:" SIZE="30"><BR>
Article responding to?<INPUT TYPE="TEXT" NAME="ARTICLE:" SIZE="75"><br>
<SELECT NAME="Type_of_Comment:" Size="1"
<option selected>
<option>Type of Comment?
<option>General Comment
<option>Question
<option>Complaint
</select><br>
<TEXTAREA NAME-"Comment" ROWS="12" COLS="80"></textarea><BR>
<INPUT TYPE="submit" value="Submit Comment"><br>
<INPUT TYPE="RESET"> </p>
</form>