+ Reply to Thread
Results 1 to 2 of 2

Thread: Is it difficult to make drop downs and check boxes required?

  1. #1
    Join Date
    Mar 2011
    Posts
    28

    Default Is it difficult to make drop downs and check boxes required?

    In theory, I know how to make any form element a required item. My question is two-fold:

    1) I'm going to have 3 choices of check boxes, for example, it could be [ ] dog, [ ] cat, or [ ] other. Since I need my visitors to choose at least one of them, but maybe all of them, how do I mandate that they at least select one?

    2) I'm going to use a drop down list box for choice of states. How do I make this so that my visitor actually drops down the list to actually choose a state? - I'll need to find a pre-defined option list for this so that I don't have to manually code all this content.

    Is this something for conditions?

    Thanks,
    Bob

  2. #2
    Join Date
    May 2008
    Posts
    1,274

    Default Re: Is it difficult to make drop downs and check boxes required?

    You just need to make sure that all of the checkboxes in a particular group have the same "name", then make that field required.

    For select boxes:

    HTML Code:
    <select name="state"><option value="">Choose State</option><option value="Alabama">Alabama</option>
    <option value="Arizona">Arizona</option></select>
    Make sure that your first option has an empty "value". In my example, that would be the Choose State option. Then, make the "state" field required.

    ginger
    Last edited by ginger23; 13-May-2011 at 08:11 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Javascript and formmail: drop down list
    By bwv in forum FormMail Subscription Support
    Replies: 4
    Last Post: 05-Nov-2004, 11:18 PM
  2. Required fields containing default text
    By tvulucy in forum FormMail Subscription Support
    Replies: 9
    Last Post: 08-Oct-2004, 10:26 PM
  3. Required Fields not working?
    By zoe77 in forum FormMail Subscription Support
    Replies: 2
    Last Post: 02-Jun-2004, 05:27 PM
  4. required field error
    By Ibis in forum FormMail Subscription Support
    Replies: 18
    Last Post: 02-Mar-2004, 10:04 AM
  5. required does not work ?!
    By flynst4r in forum FormMail Subscription Support
    Replies: 9
    Last Post: 26-Jan-2004, 10:04 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts