Skip to content Skip to sidebar Skip to footer

Check All Input Fields Have Been Filled Out With Jquery

I have 3 divs, each with a dfew input fields and next button on. I want to write a snippet of jQuery that when the next button is clicked it checks to ensure all input fields WITH

Solution 1:

You could use filter to reduce the set of all input elements to only those that are empty, and check the length property of what remains:

$(".next").click(function() {
    var empty = $(this).parent().find("input").filter(function() {
        returnthis.value === "";
    });
    if(empty.length) {
        //At least one input is empty
    }
});

Note that the definition of empty in the above code is an empty string. If you want to treat blank spaces as empty too, you may want to trim the value before comparing.

Also note that there is no need to pass this into jQuery inside the filter function. The DOM element itself will have a value property, and it's much faster to access that instead of using val.

Here's an updated fiddle.

Solution 2:

$('.next').click(function() {
    var emptyInputs = $(this).parent().find('input[type="text"]').filter(function() { return $(this).val() == ""; });
    if (emptyInputs.length) {
        alert('Fail!');
    }
});

Solution 3:

Because there is no jQuery selector for this case you can extend jQuery’s selector capabilities.

Assuming you select all :text elements, the extension is:

$.extend($.expr[':'],{
     isEmpty: function(e) {
         return e.value === '';
     }
});

Hence, you can select all empty text fields:

$(this).closest('div').find(':text:isEmpty');

$.extend($.expr[':'], {
  isEmpty: function (e) {
      return e.value === '';
  }
});
$('.next').click(function () {
      var missingRequired = $(this).closest('div').find(':text:isEmpty');
  console.log('Empty text fields: ' + missingRequired.length);
});
<scriptsrc="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script><div><inputtype="text" /><br /><inputtype="text" /><br /><inputtype="text" /><br /><inputtype="submit"value="next"class="next" /></div><div><inputtype="text" /><br /><inputtype="text" /><br /><inputtype="text" /><br /><inputtype="submit"value="next"class="next"  /></div><div><inputtype="text" /><br /><inputtype="text" /><br /><inputtype="submit"value="next"class="next"  /></div>

Post a Comment for "Check All Input Fields Have Been Filled Out With Jquery"