I'm using the jQuery Validation Plugin : http://docs.jquery.com/Plugins/Validation/
I'm having a problem which is causing the validation to start when the user starts typing however this is not what I want. I want to the validation to start after the user leaves the text field. Here is my code:
<input class="required email" type="text" size="26" name="usernameField" id="usernameField" />
<script type="text/javascript" src="js/jquery-1.3.2.min.js"></script>
<script type="text/javascript" src="http://jzaefferer.github.com/jquery-validation/jquery.validate.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("#usernameField").validate({
onfocusout:false
});
});
</script>
I thought using the onfocusout option would work but it's still validating as the user types. What am I doing wrong?
Thanks