ПРИМЕЧАНИЕ:
Один и тот же идентификатор электронной почты не может быть повторен.
Значение пустой строки может быть разрешено добавлять.
Идентификатор электронной почты должен разделяться; и.
Basi c Для ввода введенного идентификатора электронной почты требуется подтверждение
$("#d-notification").focusout(function () {
var conditions = [".com", ".in", "@"];
var d = document.getElementById("d-notification").value;
var res = conditions.some(el => d.includes(el));
if (d !== "" && res === false) {
document.getElementById("error-d").style.display = "block";
$("#generate-dispatcher").attr("disabled", true);
} else {
document.getElementById("error-d").style.display = "none";
$("#generate-dispatcher").attr("disabled", false);
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<div>
<textarea type="text" id="d-notification" class="form__field resize" placeholder="Enter the Email Id"></textarea>
<span id="error-d" class="error-noti">Please Enter valid Email Id</span>
</div>