showing results for - "how to check condition multiple input value in jquery"
Hanna
16 Apr 2017
1$('#Rusername, #Remail, #Rpassword, #Rpassword2').each(function() {
2  if ($(this).val() == '') {
3    $(this).parent().effect('shake', {times: 3}, 50).find('.verdiv').addClass('error');
4  }
5});