put focus on radio

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

    put focus on radio

    Hi,
    Is there a way to put focus on a form element of type radio or checkbox.
    It only seems to work on input of type text...

    Thanks in advance,
    Anthony


  • McKirahan

    #2
    Re: put focus on radio

    "Anthony" <anthony@notspe cified.nl> wrote in message
    news:418a3e4f$0 $36861$e4fe514c @news.xs4all.nl ...[color=blue]
    > Hi,
    > Is there a way to put focus on a form element of type radio or checkbox.
    > It only seems to work on input of type text...
    >
    > Thanks in advance,
    > Anthony[/color]


    A Google search on "JavaScript checkbox methods focus" would have given you
    your answer:





    <html>
    <head>
    <title>focus.ht m</title>
    </head>
    <body>
    <form name="form1">
    <input type="radio" name="radio1" value="1">One
    <input type="radio" name="radio1" value="2">Two
    <br>
    <input type="checkbox" name="check1" value="1">One
    <input type="checkbox" name="check2" value="2">Two
    <br>
    <input type="button" value="radio"
    onclick="docume nt.form1.radio1[0].focus()">
    <input type="button" value="checkbox "
    onclick="docume nt.form1.check1 .focus()">
    </form>
    </body>
    </html>


    Comment

    Working...