When I disable my webpage the text in my edit fields duplicates. e.g. ABC changes to ABCABC. THis only seems to happen when I have my edit fields in a <table>. A sample of my code is provided. I'd appreicate any help. Thanks, B.
<html>
<head>
<title>Test</title>
<script type="text/javascript">
<!--
function disableForm(form)
{
alert('disable form');
form.disabled=true;
}
// -->
</script>
</head>
<body>
<form name="formname">
<table>
<tbody>
<tr>
<td>
<input type=edit name="textinput" value="abc"/>
</td>
</tr>
<tr>
<td align=left>input</td>
<TD align=left><input type=edit name=userName>* </TD>
</tr>
</tbody>
</table>
<input type="button" value="test" onclick="java script:disableForm(this.form);" />
</form>
</body>
</html>