I am trying to monitor 3 text input fields together. The following doesn't seem to work.
$(document).ready(function () {                
    $("input:text").each( function () {  
        $(this).change( function () {
            checkinputs(this));                            
        });
    });
});
Some insight please. I want to check on each of the input field keyups whether ALL of them conform to standards enforced by checkinputs().
In other words, when someone is typing in one of the fields, I want to monitor the current field and the other fields as well in real-time. This might not be as trivial as I think it is.