Good Day,
I have this trivial program. For some reason the onsubmit function test isn't being called. Am I missing the obvious? I suspect it is a browser thing since we use here a customized version of IE.
Thanks,
Dan
<form action="processmail.php" method="post" name="newUserForm">
<input type="submit" value="Submit Request" onsubmit="return test();">
</form>
<script LANGUAGE="JavaScript">
function test() {
alert('xxx');
return false;
}
</script>
I have this trivial program. For some reason the onsubmit function test isn't being called. Am I missing the obvious? I suspect it is a browser thing since we use here a customized version of IE.
Thanks,
Dan
<form action="processmail.php" method="post" name="newUserForm">
<input type="submit" value="Submit Request" onsubmit="return test();">
</form>
<script LANGUAGE="JavaScript">
function test() {
alert('xxx');
return false;
}
</script>