E-mail subject form

JavaScript and client side scripting.

Moderator: General Moderators

Post Reply
ssj4gogita4
Forum Newbie
Posts: 11
Joined: Wed Mar 31, 2004 9:03 pm
Location: TX
Contact:

E-mail subject form

Post by ssj4gogita4 »

Does anyone know how to add a box that has a selection of subjects for an email form? Check out my site at http://www.spongebobmania.com/ and go to "Staff"
phait
Forum Commoner
Posts: 46
Joined: Wed Apr 07, 2004 4:41 am
Location: watford / leicester, UK

Post by phait »

suggest a select menu:

Code: Select all

<select name="nameOfYourDropDown">
<option value="">Select a subject below</option>
<option value="1">Rod</option>
<option value="2">Jane</option>
<option value="3">Freddy</option>
</select>
Just change the values to be whatever you want them to be. The text that will appear on screen is placed in-between the <option> tags.

You could also learn html here, which would save you a lot of time:
http://www.w3schools.com

and click on the html option on the left hand side.


hth
Post Reply