[CODE=HTML]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitl ed Document</title>
<script type="text/javascript">
function validate(){
alert('Yahoo... !!!');
return false;
}
</script>
</head>
<body>
<form onSubmit="retur n validate()">
<input type=button value=submit onclick="this.f orm.submit()"/>
</form>
</body>
</html>
[/CODE]
The function validate is not working ..!!!!!!!
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitl ed Document</title>
<script type="text/javascript">
function validate(){
alert('Yahoo... !!!');
return false;
}
</script>
</head>
<body>
<form onSubmit="retur n validate()">
<input type=button value=submit onclick="this.f orm.submit()"/>
</form>
</body>
</html>
[/CODE]
The function validate is not working ..!!!!!!!
Comment