Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

<HTML>

<BODY>
<HEAD>
<script language="javascript" type="text/javascript">
function muk()
{
debugger;
var mm= document.getElementById("abc");
var d= document.getElementById("dd");
d.disabled=true;

}
</script>
</HEAD>
</BODY>
<TABLE>
<TR>
<TD id="abc">
<input type="text" id="dd" name="firstname"disabled="disabled" />
<input type="text" name="Lastname"disabled="disabled" />
</TD>
</TR>
</TABLE>
<input type="Submit" name="firstname" onclick="muk();" />
</HTML>

You might also like