Name=
SUBMIT=SEND
If I could also elimintate the line that says "sumbit=send" that'd be extra awesome, right there. Can anyone help?
<form method="post" enctype="text/plain" action="mailto:address@domain.com?subject=5 Things to Do Today" onSubmit="window.alert('This form is being sent via email. You only need to hit SUBMIT once. Hit OK at the next prompt and then you can clear the form.')">
<CENTER>
<table cellpadding="0" cellspacing="0">
<tr>
<TR>
<TD>Name:
</TR>
<TD> <INPUT TYPE="TEXT" NAME="Name" VALUE="" SIZE="50">
</TR>
<TR>
<TD>Date: </TD>
<TD>
<script LANGUAGE="Javascript">
<!--
// Array of day names
var dayNames = new Array("Sunday","Monday","Tuesday","Wednesday",
"Thursday","Friday","Saturday");
// Array of month Names
var monthNames = new Array(
"January","February","March","April","May","June","July",
"August","September","October","November","December");
var now = new Date();
document.write(dayNames[now.getDay()] + ", " +
monthNames[now.getMonth()] + " " +
now.getDate() + ", " + now.getFullYear());
// -->
</SCRIPT>
</TD>
</TR>
</TABLE>
</CENTER>
<br>
<center>
<input id="submit" class="button" type="submit" name="SUBMIT" value="SEND">
<input id="reset" class="button" type="reset" name="CLEAR FORM" value="CLEAR FORM">
</center>
</FORM>

Help



Back to top










