Answers for "disabled input when another input not empty jquery"

C#
1

how can prevent the empty input in jquery

$('#form').submit(function() {
    if ($.trim($("#email").val()) === "" || $.trim($("#user_name").val()) === "") {
        alert('you did not fill out one of the fields');
        return false;
    }
});
Posted by: Guest on April-19-2021

C# Answers by Framework

Browse Popular Code Answers by Language