August 1999
Intermediate to advanced
1488 pages
72h 53m
English
radio.focus()
The focus() method of the Radio object sets the focus to the radio button.
Listing 7.435 shows how the focus() method is used.
<html> <head> <title> Example of the radio focus method</title> </head> <body> <form name="form1"> <input type="radio" name=button1>Box 1 <br> <input type="radio" name=button2>Box 2 <br><br> <input type="button" value="Set Focus to Box 1" onClick='document.form1.button1.focus()'> </form> </body> </html> |
Read now
Unlock full access