How can I check for empty values of (required) input fields within a section, and then add a class to them on an event, using jQuery? So far, I have tried:
required
$('input:text[value=]','#sender_container').addClass('error');
DEMO