Ok, I'm trying to create a comment box for a website. However, I want them to be able to choose different colors for their comments.
Here's what I have so far:
Code:
<form action=mailto: (my email) enctype="application/x-www-form-urlencoded" method="post">Your Email<input maxlength="2147483647" name="Your Email Address" size="30" type="text"></input>
<SCRIPT LANGUAGE="javascript">
function LinkUp()
{var number = document.DropDown.DDlinks.selectedIndex;
location.href = document.DropDown.DDlinks.options[number].value;}
</SCRIPT>
<FORM NAME="DropDown">
<SELECT NAME="DDlinks">
<OPTION SELECTED>--> Choose a Color <--
<Option Value="#FF0000"> Red
<Option Value ="#0000FF"> Blue
<Option Value ="#000000"> Black
</SELECT>
<INPUT TYPE="BUTTON" VALUE="Click" onClick="LinkUp()">
</FORM>
<textarea cols="40" name="comment" rows="6"></textarea>
<input maxlength="2147483647" size="20" type="submit" value="Submit"></input> <input maxlength="2147483647" size="20" type="reset" value="Reset"></input></form>
It seems to not of sent a test message to my inbox. I'm guessing I'll need the name of an application that will do that for me? Or would it be easier to have them posted on the website instead?