$('input[type="email"]').on('change', function() {
get_value = $(this).val();
if(get_value=='Mphoto1677@gmail.com'){
$('button.btn').attr('disabled', true);
}else{
$('button.btn').removeAttr('disabled');
}
});
Jagdish Sarma Asked question May 18, 2021