mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
24 lines
522 B
HTML
24 lines
522 B
HTML
<html>
|
|
<head>
|
|
<script language="JavaScript">
|
|
function InitialFocus(){
|
|
document.frmSelectUser.radResidence[0].focus();
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onfocus="InitialFocus();" >
|
|
<form name="frmSelectUser">
|
|
<table>
|
|
<tbody>
|
|
<tr>
|
|
<td><input name="radResidence" type="radio" value="KOR"></td>
|
|
</tr>
|
|
<tr>
|
|
<td><input name="radResidence" type="radio" value="JPN"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</body>
|
|
</html>
|