Hi,
I have the following code in JSP (I have cleaned it up so that it looks like HTML) which, when opened in NS 6.2 browser, radio buttons do not function at ALL! on clicking on the radio button, browser selects the text instead of selecting the radio button. Is there any issue with a radio button placed inside the groupbox?
Please help.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<table width="40%" border="0" cellspacing="0" cellpadding="1" align="left">
<tr height=1 >
<td width="1"></td>
<td></td>
<td width="1"></td>
</tr>
<tr>
<td width="1"></td>
<td><fieldset ><legend >Postings </legend>
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td class="tablecontents" width="5%" height="40">
<div align="right">
<input type="radio" name="radiobutton" value="radiobutton" tabindex="18">
</div>
</td>
<td class="RadioButton" width="95%" height="40">Internal Posting Only</td>
</tr>
<tr>
<td class="tablecontents" width="5%" height="40">
<div align="right">
<input type="radio" name="radiobutton" value="radiobutton" tabindex="20">
</div>
</td>
<td class="RadioButton" width="95%" height="40">Internal and External
Posting 1</td>
</tr>
</table>
</fieldset></td>
<td width="1"></td>
</tr>
<tr height=1 >
<td width="1"></td>
<td></td>
<td width="1"></td>
</tr>
</table>
</body>
</html>
I have the following code in JSP (I have cleaned it up so that it looks like HTML) which, when opened in NS 6.2 browser, radio buttons do not function at ALL! on clicking on the radio button, browser selects the text instead of selecting the radio button. Is there any issue with a radio button placed inside the groupbox?
Please help.
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#FFFFFF">
<table width="40%" border="0" cellspacing="0" cellpadding="1" align="left">
<tr height=1 >
<td width="1"></td>
<td></td>
<td width="1"></td>
</tr>
<tr>
<td width="1"></td>
<td><fieldset ><legend >Postings </legend>
<table width="100%" border="0" cellspacing="0" cellpadding="1">
<tr>
<td class="tablecontents" width="5%" height="40">
<div align="right">
<input type="radio" name="radiobutton" value="radiobutton" tabindex="18">
</div>
</td>
<td class="RadioButton" width="95%" height="40">Internal Posting Only</td>
</tr>
<tr>
<td class="tablecontents" width="5%" height="40">
<div align="right">
<input type="radio" name="radiobutton" value="radiobutton" tabindex="20">
</div>
</td>
<td class="RadioButton" width="95%" height="40">Internal and External
Posting 1</td>
</tr>
</table>
</fieldset></td>
<td width="1"></td>
</tr>
<tr height=1 >
<td width="1"></td>
<td></td>
<td width="1"></td>
</tr>
</table>
</body>
</html>