Results 1 to 3 of 3

Thread: Making combo boxes visible

  1. #1

    Thread Starter
    Member
    Join Date
    Mar 2001
    Posts
    37

    Question Making combo boxes visible

    My page allows the user to select an option from a combo box (e.g. the options are name, position, and year). How do I make another combo box visible once or after the user has selected an option from the first combo box? Help!

  2. #2
    Frenzied Member
    Join Date
    Feb 2001
    Posts
    1,140
    Code:
    <script language='JavaScript'>
      Show () {
        document.myForm.mySelect.style.display = "";
      }
    </script>
    There are different ways to do it, ways that are more compliant and meet the W3C standards. You can check W3C, actually.

    Anyway, you just set the display attribute. You can set it to "none" aswell. But this function name on the onChange event of the triggering box.
    Travis, Kung Foo Journeyman
    As always, RTFM.

    WWW Standards: HTML 4.01, CSS Level 2, ECMA 262 Bindings to DOM Level 1, JavaScript 1.3 Guide and Reference
    Perl: Learn Perl, Llama, Camel, Cookbook, Perl Monks, Perl Mongers, O'Reilly's Perl.com, ActiveState, CPAN, TPJ, and use Perl;
    YBMS, but Mozilla doesn't.

  3. #3
    PowerPoster sail3005's Avatar
    Join Date
    Oct 2000
    Location
    Chicago, IL, USA
    Posts
    2,340
    just a question, but wouldn't it be:

    Code:
    <script language='JavaScript'>
      Show () {
        document.myForm.mySelect.style.visibility = visible;
      }
    </script>
    ? i could be wrong though...

    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA
    USAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSAUSA

Posting Permissions

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



Click Here to Expand Forum to Full Width