Textbox/Checkbox

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Mike

    Textbox/Checkbox

    Hello all,

    I have a form with a checkbox labeled other. I want to make it so if
    the user clicks "other" a textbox appears right next to it allowing
    them to fill in their value. If the other checkbox is unchecked, the
    box disappears. Is this possible with Javascript? If so how would I go
    about implementing this??

    thanks in advance,
    Mike
  • Janwillem Borleffs

    #2
    Re: Textbox/Checkbox


    "Mike" <marena23@hotma il.com> schreef in bericht
    news:72ce9d2.03 12021420.1ca714 74@posting.goog le.com...[color=blue]
    > Hello all,
    >
    > I have a form with a checkbox labeled other. I want to make it so if
    > the user clicks "other" a textbox appears right next to it allowing
    > them to fill in their value. If the other checkbox is unchecked, the
    > box disappears. Is this possible with Javascript? If so how would I go
    > about implementing this??
    >[/color]

    <form>
    <input type="checkbox" name="checkbox"
    onclick="form.t extbox.style.di splay=checked?' ':'none'" />
    <input style="display: none" type="text" name="textbox" />
    </form>


    JW



    Comment

    • Lasse Reichstein Nielsen

      #3
      Re: Textbox/Checkbox

      marena23@hotmai l.com (Mike) writes:
      [color=blue]
      > Hello all,
      >
      > I have a form with a checkbox labeled other. I want to make it so if
      > the user clicks "other" a textbox appears right next to it allowing
      > them to fill in their value. If the other checkbox is unchecked, the
      > box disappears. Is this possible with Javascript? If so how would I go
      > about implementing this??[/color]

      <input type="checkbox"
      onclick="docume nt.getElementBy Id('textField') .style.visibili ty =
      this.checked?'v isible':'hidden ';">
      <input type="text" id="textField" style="visibili ty:hidden;">

      /L
      --
      Lasse Reichstein Nielsen - lrn@hotpop.com
      DHTML Death Colors: <URL:http://www.infimum.dk/HTML/rasterTriangleD OM.html>
      'Faith without judgement merely degrades the spirit divine.'

      Comment

      Working...