Answers for "how to check condition multiple input value in jquery"

0

how to check condition multiple input value in jquery

$('#Rusername, #Remail, #Rpassword, #Rpassword2').each(function() {
  if ($(this).val() == '') {
    $(this).parent().effect('shake', {times: 3}, 50).find('.verdiv').addClass('error');
  }
});
Posted by: Guest on July-02-2020

Code answers related to "how to check condition multiple input value in jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language