Validate form and output message
<html>
<head>
<script type="text/javascript" src="js/jquery-1.3.2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("form").submit(function() {
if ($("input:first").val() == "asdf") {
$("span").text("Validated...").show();
return true;
}
$("span").text("Not valid!").show().fadeOut(1000);
return false;
});
});
</script>
</head>
<body>
<body>
<form action="javascript:alert('success!');">
<input type="text" />
<input type="submit" />
</form>
<span></span>
</body>
</html>
Related examples in the same category