Add fade out for email validation
This commit is contained in:
parent
3744246184
commit
123aeab993
|
@ -147,6 +147,7 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
$("#first_name").focusin(function () {
|
$("#first_name").focusin(function () {
|
||||||
$(this).removeClass('aai-form-danger');
|
$(this).removeClass('aai-form-danger');
|
||||||
$(".msg_first_name_error").fadeOut();
|
$(".msg_first_name_error").fadeOut();
|
||||||
|
@ -165,6 +166,7 @@
|
||||||
$("#email").focusin(function () {
|
$("#email").focusin(function () {
|
||||||
$(this).removeClass('aai-form-danger');
|
$(this).removeClass('aai-form-danger');
|
||||||
$(".msg_email_error").fadeOut();
|
$(".msg_email_error").fadeOut();
|
||||||
|
$(".msg_email_validation_error").fadeOut();
|
||||||
});
|
});
|
||||||
|
|
||||||
$("#email_conf").focusin(function () {
|
$("#email_conf").focusin(function () {
|
||||||
|
|
Loading…
Reference in New Issue