Comment vérifier la condition de la valeur d'entrée multiple dans jQuery
$('#Rusername, #Remail, #Rpassword, #Rpassword2').each(function() {
if ($(this).val() == '') {
$(this).parent().effect('shake', {times: 3}, 50).find('.verdiv').addClass('error');
}
});
Adventurous Alligator