Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to combine 4 input fields into a jQuery function so that it checks each input as its keyup'd and when all the boxes reaches a length of 4 then the list item changes to acknowledge all fields are full

HTML

<div class="cardNumber">
    <input type="text" value="" maxlength="4" name="ccn1" id="ccn1">
    <input type="text" value="" maxlength="4" name="ccn2" id="ccn2">
    <input type="text" value="" maxlength="4" name="ccn3" id="ccn3">
    <input type="text" value="" maxlength="4" name="ccn4" id="ccn4">
</div>

<ul>
    <li class="checkNumber">Card Number</li>
</ul>

jQuery

$(".cardNumber input[name=ccn1], .cardNumber input[name=ccn2], .cardNumber input[name=ccn3], .cardNumber input[name=ccn4]").keyup(function() {
    $(".cardNumber input[name=ccn1], .cardNumber input[name=ccn2], .cardNumber input[name=ccn3], .cardNumber input[name=ccn4]").each(function() {
        if ($(".cardNumber input[name=ccn1], .cardNumber input[name=ccn2], .cardNumber input[name=ccn3], .cardNumber input[name=ccn4]").length >= '4') {
            $("li.checkNumber").addClass("checked");
        }
    });
});

Demo: http://jsfiddle.net/fz4wF/

share|improve this question

4 Answers

up vote 6 down vote accepted
$(':input[name^=ccn]').keyup(function() {
    var check = $(':input[name^=ccn]').filter(function() {
        return $.trim(this.value).length < 4;
    }).length === 0;

    $("li.checkNumber").toggleClass("checked",check);
});

DEMO

share|improve this answer
+1..Like this approach – The System Restart Jun 25 '12 at 13:44
I went with this answer but edited it to be the following [CODE] $(':input[name^=ccn]').keyup(function() { var check = $(':input[name^=ccn]').filter(function() { return $.trim(this.value).length < 4; }).length === 0; if (check) { $("li.checkNumber").addClass("checked"); } else { $("li.checkNumber").removeClass("checked"); } }); [/CODE] – Donald Sutherland Jun 25 '12 at 13:47
@DonaldSutherland, toggleClass with the seconds parameter (check) does what your if else statement does. Right? – aquinas Jun 25 '12 at 14:11
I was trying to remember what the jQuery equivalent of C#'s TrueForAll. Couldn't remember. You did what I wanted to do in my answer. My +1. – aquinas Jun 25 '12 at 14:12

Something like this:

http://jsfiddle.net/fz4wF/19/

$(".cardNumber input").keyup(function(){    
    var allfilled = true;
    $(".cardNumber input").each(function() {
        if($(this).val().length < 4) {
            allfilled =false;
            return false;
        }
    });  

    $("li.checkNumber").toggleClass("checked",allfilled);    
});​
share|improve this answer

I believe this is what you need.

share|improve this answer

i think the easiest way is this: http://jsfiddle.net/fz4wF/28/ not the best.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.