A validation method is set up to check the length of a user input field. It functions properly on the initial try, but does not update if I go back and modify the field.
$("#user").blur(function () {
if ($("#user").val().length < 3) {
$("#userval").addClass("valincorrect").html($("#user").val().length);
} else {
$("#userval").addClass("valcorrect");
};
});