I attempted to implement a basic validation using the jQuery Validation Plugin, but I was unsuccessful. When I click the submit button, nothing happens. Can someone provide assistance with this issue?
I have included the code below:
Thank you in advance.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.min.js" />
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.0/jquery.validate.js" />
<script type="text/javascript">
$(document).ready(function () {
$('#btnSubmit').click(function () {
$('#logform').validate({
rules: {
txtUsr: {
required: true
},
txtPass: {
required: true
}
},
messages: {
txtUsr: {
required: 'Please enter username'
},
txtPass: {
required: 'Please enter password'
}
}
});
});
});
</script>
</head>
<body>
<div id='LoginDiv' style='width:400px;height:300px;background-color:green;'>
<form method="post" action="" id='logform'>
User Name : <input type="text" id='txtUsr' name='txtUsr' style='margin-top:12px'/>
<br/>
<br/>
Password : <input type="text" id='txtPass' name='txtPass' />
<br/>
<br/>
<input type="submit" id='btnSubmit' value='Submit' />
</form>
</div>
</body>
</html>