Hi,
whenever Iam changing a value in the drop down box I want to reload my form. So Iam calling the function in the onChange event of my drop down box. But the form is not submitted, it shows Object does not support this property or method as an error.
The code for this placed below..
<html>
<head>
<script language="javascript">
function formSubmit()
{
document.forms[0].submit(); //or document.regform.submit();
}
</script>
</head>
<body>
<form method="post" name="regform" action=updatetechinter.jsp>
<select size="1" name="D1" onChange=formSubmit()>
.
.<option>....</option>
.
.
.
</select>
</form>
</body>
</html>